/**
 * Dashboard Guided Tour Styles
 * Full-screen immersive experience with sidebar progress
 */

/* Tour Container - Full Screen Overlay */
#dashboardTourContainer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#dashboardTourContainer.active {
    opacity: 1;
    visibility: visible;
}

.dashboard-tour-overlay {
    display: flex;
    width: 100%;
    height: 100%;
    color: #ffffff;
}

/* Progress Bar */
.tour-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10001;
}

.tour-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

/* Close Button */
.tour-close-btn {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Sidebar */
.tour-sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1rem;
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-sidebar-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.tour-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.tour-sidebar-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tour-sidebar-item.active {
    background: rgba(59, 130, 246, 0.3);
    border-left: 3px solid #3b82f6;
}

.tour-sidebar-item.completed .tour-sidebar-icon {
    color: #22c55e;
}

.tour-sidebar-icon {
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-sidebar-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.tour-step-num {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
}

.tour-step-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Main Content Area */
.tour-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    overflow-y: auto;
}

.tour-section-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.tour-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
}

.tour-nav-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.tour-nav-btn.tour-prev {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.tour-nav-btn.tour-prev:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.2);
}

.tour-nav-btn.tour-prev.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tour-nav-btn.tour-next {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
}

.tour-nav-btn.tour-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.tour-nav-btn.tour-complete {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
}

.tour-nav-btn.tour-complete:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.tour-nav-dots {
    display: flex;
    gap: 0.5rem;
}

.tour-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.tour-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.tour-dot.active {
    background: #3b82f6;
    width: 24px;
    border-radius: 4px;
}

/* ─────────────────────────────────────────────────────────────
   Section Styles
   ───────────────────────────────────────────────────────────── */

/* Welcome Section */
.tour-welcome {
    text-align: center;
    max-width: 800px;
}

.tour-welcome-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

.tour-welcome-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tour-welcome-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem 0;
}

.tour-stats-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tour-stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    min-width: 150px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-stat-card.red {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
}

.tour-stat-card.blue {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
}

.tour-stat-card.green {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.1);
}

.tour-stat-value {
    font-size: 2rem;
    font-weight: 800;
}

.tour-stat-card.red .tour-stat-value { color: #ef4444; }
.tour-stat-card.blue .tour-stat-value { color: #3b82f6; }
.tour-stat-card.green .tour-stat-value { color: #22c55e; }

.tour-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

.tour-welcome-steps {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.tour-welcome-steps h3 {
    font-size: 1rem;
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.tour-welcome-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.tour-welcome-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
}

.step-icon {
    font-size: 1.25rem;
}

.tour-welcome-cta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Generic Section */
.tour-section {
    max-width: 900px;
    width: 100%;
}

.tour-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tour-section-step {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.tour-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.tour-section-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Site Review */
.tour-content-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.tour-score-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.tour-score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: rgba(239, 68, 68, 0.2);
    border: 4px solid #ef4444;
}

.tour-score-circle.good {
    background: rgba(34, 197, 94, 0.2);
    border-color: #22c55e;
}

.tour-score-circle.warning {
    background: rgba(234, 179, 8, 0.2);
    border-color: #eab308;
}

.tour-score-circle.critical {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.tour-score-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.tour-score-max {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.tour-score-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tour-score-status {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.tour-findings {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-finding-group {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.tour-finding-group.opportunities {
    border-left-color: #22c55e;
}

.tour-finding-group h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
}

.tour-finding-list {
    margin: 0;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.tour-finding-list li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Fix First */
.tour-fix-first-content {
    text-align: center;
}

.tour-fix-count {
    margin-bottom: 2rem;
}

.tour-fix-count .count-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ef4444;
    display: block;
}

.tour-fix-count .count-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.tour-fix-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.fix-category {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: left;
    min-width: 220px;
}

.fix-cat-icon {
    font-size: 1.5rem;
}

.fix-cat-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.fix-cat-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.tour-fix-list {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.tour-fix-list h4 {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.tour-fix-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-fix-item:last-child {
    border-bottom: none;
}

.fix-rank {
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.fix-title {
    font-size: 0.9rem;
}

/* Your Pages */
.tour-pages-content {
    text-align: center;
}

.tour-pages-count {
    margin-bottom: 2rem;
}

.tour-pages-count .pages-number {
    font-size: 4rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
}

.tour-pages-count .pages-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.tour-pages-breakdown {
    max-width: 500px;
    margin: 0 auto 2rem;
}

.page-type {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.page-type-bar {
    height: 24px;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.page-type-label {
    font-size: 0.85rem;
    white-space: nowrap;
}

.tour-pages-insight {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.tour-pages-insight p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Content Gaps */
.tour-gaps-content {
    text-align: center;
}

.tour-gaps-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gap-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.gap-circle.competitor {
    background: rgba(148, 163, 184, 0.2);
    border: 2px solid #94a3b8;
}

.gap-circle.you {
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid #3b82f6;
}

.gap-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.gap-opportunity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.opp-icon {
    font-size: 2.5rem;
}

.opp-label {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 600;
}

.tour-gaps-list {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.tour-gaps-list h4 {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.gap-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gap-item:last-child {
    border-bottom: none;
}

.gap-icon {
    font-size: 1rem;
}

.gap-topic {
    font-size: 0.9rem;
}

/* Smart Suggestions */
.tour-suggestions-content {
    text-align: center;
}

.tour-suggestions-intro {
    margin-bottom: 2rem;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ai-icon {
    font-size: 1.25rem;
}

.tour-suggestions-intro p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

.tour-suggestions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.suggestion-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.25rem;
    border-radius: 10px;
    text-align: left;
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-rank {
    font-size: 0.75rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.suggestion-title {
    font-weight: 600;
    line-height: 1.4;
}

.suggestion-reason {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* Competitors */
.tour-competitors-content {
    max-width: 700px;
    margin: 0 auto;
}

.tour-comparison-visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    padding: 0.75rem 1rem;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row.header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comp-name {
    font-size: 0.9rem;
}

.comp-you, .comp-them {
    padding: 0 0.5rem;
}

.comp-bar {
    display: block;
    height: 16px;
    border-radius: 3px;
}

.tour-competitors-insight {
    background: rgba(34, 197, 94, 0.1);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.2);
    text-align: left;
}

.tour-competitors-insight h4 {
    margin: 0 0 0.75rem 0;
    color: #22c55e;
}

.tour-competitors-insight ul {
    margin: 0;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.tour-competitors-insight li {
    margin-bottom: 0.5rem;
}

/* Questions */
.tour-questions-content {
    max-width: 700px;
    margin: 0 auto;
}

.tour-questions-intro {
    margin-bottom: 2rem;
}

.featured-snippet-example {
    background: #ffffff;
    color: #000000;
    padding: 1.25rem;
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

.snippet-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.snippet-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a0dab;
    margin-bottom: 0.5rem;
}

.snippet-answer {
    font-size: 0.9rem;
    color: #4d5156;
    font-style: italic;
}

.tour-questions-list {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
}

.tour-questions-list h4 {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.question-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.question-item:last-child {
    border-bottom: none;
}

.q-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.q-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Planner */
.tour-planner-content {
    text-align: center;
}

.tour-planner-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.timeline-week {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 180px;
    text-align: center;
}

.week-header {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.week-focus {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.week-tasks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.timeline-arrow {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    align-self: center;
}

.tour-planner-cta {
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    max-width: 500px;
    margin: 0 auto;
}

.tour-planner-cta p {
    margin: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.tour-cta {
    text-align: center;
    max-width: 600px;
}

.tour-cta-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounce 1s ease infinite;
}

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

.tour-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
}

.tour-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem 0;
}

.tour-cta-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: left;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.summary-icon {
    color: #22c55e;
    font-size: 1.25rem;
}

.summary-text {
    font-size: 1rem;
}

.tour-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tour-cta-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.tour-cta-btn.primary {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
}

.tour-cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.tour-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tour-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ─────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .dashboard-tour-overlay {
        flex-direction: column;
    }
    
    .tour-sidebar {
        width: 100%;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 200px;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .tour-sidebar-title {
        display: none;
    }
    
    .tour-sidebar-item {
        flex-shrink: 0;
        padding: 0.5rem 0.75rem;
    }
    
    .tour-sidebar-text {
        display: none;
    }
    
    .tour-main-content {
        padding: 1.5rem;
    }
    
    .tour-welcome-title {
        font-size: 1.75rem;
    }
    
    .tour-welcome-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tour-content-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-planner-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .tour-stats-row {
        flex-direction: column;
        align-items: center;
    }
    
    .tour-stat-card {
        width: 100%;
        max-width: 200px;
    }
    
    .tour-welcome-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-fix-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .fix-category {
        width: 100%;
        max-width: 300px;
    }
    
    .tour-gaps-visual {
        flex-direction: column;
    }
    
    .gap-arrow {
        transform: rotate(90deg);
    }
    
    .tour-cta-actions {
        flex-direction: column;
    }
    
    .tour-cta-btn {
        width: 100%;
    }
}

/* Start Tour Button */
.start-tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.start-tour-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.start-tour-btn .tour-icon {
    font-size: 1.1rem;
}
