/**
 * Tours Generator Frontend Styles - YouTube-Inspired Clean Design
 * Section-under-section, block-under-block layout with clean YouTube aesthetics
 * Mobile-first responsive design with minimal animations and clean UI
 */

/* ========================================
   YouTube-Style Layout System
   ======================================== */

/* YouTube-Style Sections */
.yt-header-section {
    background: #ffffff;
    padding: 48px 0 32px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 32px;
}

.yt-header-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.yt-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f0f0f;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.yt-subtitle {
    font-size: 1.125rem;
    color: #606060;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* YouTube-Style Progress Section */
.yt-progress-section {
    background: #f9f9f9;
    padding: 24px 0;
    margin-bottom: 40px;
    border-radius: 12px;
}

.yt-progress-container {
    max-width: 800px;
    margin: 0 auto;
}

.yt-progress-bar {
    height: 4px;
    background: #e5e5e5;
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

.yt-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    border-radius: 2px;
    width: 25%;
    transition: width 0.6s ease;
}

.yt-step-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.yt-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    text-align: center;
}

.yt-step-icon {
    width: 40px;
    height: 40px;
    background: #e5e5e5;
    color: #606060;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.yt-step.active .yt-step-icon {
    background: #ff0000;
    color: #ffffff;
}

.yt-step.completed .yt-step-icon {
    background: #00b000;
    color: #ffffff;
}

.yt-step span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #606060;
    transition: color 0.3s ease;
}

.yt-step.active span {
    color: #0f0f0f;
    font-weight: 600;
}

/* YouTube-Style Step Sections */
.yt-step-section {
    margin-bottom: 48px;
}

.yt-step-section:not(.active) {
    display: none;
}

/* YouTube-Style Blocks */
.yt-block {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s ease;
}

.yt-block:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.yt-block-header {
    margin-bottom: 24px;
}

.yt-block-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0 0 8px;
    line-height: 1.25;
    display: flex;
    align-items: center;
    gap: 12px;
}

.yt-block-subtitle {
    font-size: 0.95rem;
    color: #606060;
    margin: 0;
    line-height: 1.4;
}

/* YouTube-Style Counter Badge */
.yt-counter-badge {
    background: #ff0000;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 16px;
    min-width: 24px;
    text-align: center;
}

/* YouTube-Style Buttons */
.yt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    min-height: 48px;
}

.yt-btn-primary {
    background: #ff0000;
    color: #ffffff;
}

.yt-btn-primary:hover {
    background: #cc0000;
}

.yt-btn-secondary {
    background: #f2f2f2;
    color: #0f0f0f;
    border: 1px solid #e5e5e5;
}

.yt-btn-secondary:hover {
    background: #e5e5e5;
}

.yt-btn-large {
    padding: 16px 32px;
    font-size: 1rem;
    min-height: 56px;
}

.yt-btn-xl {
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    min-height: 64px;
}

.yt-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e5e5e5;
    color: #999999;
}

/* YouTube-Style Navigation */
.yt-navigation-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 32px 0 0;
    margin-top: 32px;
    border-top: 1px solid #e5e5e5;
}

.yt-navigation-hint {
    font-size: 0.875rem;
    color: #606060;
    margin: 16px 0 0;
    text-align: center;
    line-height: 1.4;
}

/* YouTube-Style Search Components */
.yt-search-container {
    position: relative;
}

.yt-search-input-group {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.yt-search-input {
    width: 100%;
    height: 56px;
    padding: 0 60px 0 20px;
    border: 2px solid #cccccc;
    border-radius: 28px;
    font-size: 1rem;
    background: #ffffff;
    transition: border-color 0.2s ease;
    outline: none;
}

.yt-search-input:focus {
    border-color: #065fd4;
}

.yt-search-btn {
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    width: 52px;
    background: #f8f8f8;
    border: none;
    border-radius: 0 26px 26px 0;
    cursor: pointer;
    color: #606060;
    font-size: 18px;
    transition: background-color 0.2s ease;
}

.yt-search-btn:hover {
    background: #e5e5e5;
}

.yt-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
}

/* YouTube-Style Popular Cards */
.yt-popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.yt-popular-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.yt-popular-card:hover {
    border-color: #065fd4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.yt-popular-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.yt-popular-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 4px;
}

.yt-popular-desc {
    font-size: 0.875rem;
    color: #606060;
}

/* YouTube-Style Empty States */
.yt-empty-state {
    text-align: center;
    padding: 48px 24px;
    color: #606060;
}

.yt-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.yt-empty-state h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0 0 8px;
}

.yt-empty-state p {
    font-size: 0.95rem;
    color: #606060;
    margin: 0;
}

/* YouTube-Style Notice Blocks */
.yt-notice-block {
    background: #f0f8ff;
    border-color: #065fd4;
}

.yt-notice-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.yt-notice-icon {
    width: 24px;
    height: 24px;
    color: #065fd4;
    flex-shrink: 0;
}

.yt-notice-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0 0 4px;
}

.yt-notice-text p {
    font-size: 0.875rem;
    color: #606060;
    margin: 0;
}

/* YouTube-Style Generate Block */
.yt-generate-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e5e5e5;
    text-align: center;
}

.yt-generate-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.yt-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #606060;
}

.yt-feature-item i {
    color: #ff0000;
}

/* YouTube-Style Vibes Grid - Compact Tag Style */
.yt-vibes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.yt-vibe-card {
    background: #f8f9fa;
    border: 2px solid #e5e5e5;
    border-radius: 24px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #606060;
    white-space: nowrap;
    min-height: 40px;
}

.yt-vibe-card:hover {
    border-color: #ff0000;
    background: #fff8f8;
    color: #ff0000;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.15);
}

.yt-vibe-card.selected {
    border-color: #ff0000;
    background: #ff0000;
    color: #ffffff;
    box-shadow: 0 2px 12px rgba(255, 0, 0, 0.3);
}

.yt-vibe-card.selected:hover {
    background: #e60000;
    transform: translateY(-1px);
}

.yt-vibe-icon {
    font-size: 1rem;
    color: inherit;
    line-height: 1;
}

.yt-vibe-content {
    display: flex;
    align-items: center;
    gap: 0;
}

.yt-vibe-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: inherit;
    margin: 0;
    line-height: 1;
}

.yt-vibe-description {
    display: none; /* Hide descriptions in compact tag mode */
}

.yt-vibe-check {
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    margin-left: 4px;
}

.yt-vibe-card.selected .yt-vibe-check {
    opacity: 1;
}

/* YouTube-Style Duration Components */
.yt-duration-section {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.yt-duration-display {
    margin-bottom: 32px;
}

.yt-duration-number {
    font-size: 4rem;
    font-weight: 700;
    color: #ff0000;
    line-height: 1;
}

.yt-duration-unit {
    font-size: 1.5rem;
    font-weight: 500;
    color: #606060;
    margin-left: 8px;
}

.yt-duration-slider-container {
    margin-bottom: 24px;
}

.yt-duration-slider {
    width: 100%;
    height: 8px;
    background: #e5e5e5;
    border-radius: 4px;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 16px;
}

.yt-duration-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #ff0000;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.yt-duration-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #ff0000;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.yt-duration-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #606060;
    margin-bottom: 24px;
}

.yt-duration-presets {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.yt-preset-btn {
    padding: 12px 24px;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    background: #ffffff;
    color: #606060;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-preset-btn:hover,
.yt-preset-btn.active {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

/* YouTube-Style Travelers Section */
.yt-travelers-section {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.yt-counter-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.yt-counter-btn-large {
    width: 56px;
    height: 56px;
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    background: #ffffff;
    color: #606060;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-counter-btn-large:hover {
    border-color: #ff0000;
    color: #ff0000;
}

.yt-counter-display {
    text-align: center;
}

.yt-counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1;
    display: block;
}

.yt-counter-label {
    font-size: 1rem;
    color: #606060;
    font-weight: 500;
    margin-top: 4px;
}

.yt-travelers-presets {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.yt-preset-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    background: #ffffff;
    color: #606060;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yt-preset-pill:hover,
.yt-preset-pill.active {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

/* YouTube-Style Date Section */
.yt-date-section {
    max-width: 400px;
    margin: 0 auto;
}

.yt-date-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.yt-date-icon {
    position: absolute;
    left: 16px;
    color: #606060;
    font-size: 18px;
    z-index: 1;
}

.yt-date-input {
    width: 100%;
    height: 56px;
    padding: 0 20px 0 50px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 1rem;
    background: #ffffff;
    color: #0f0f0f;
    transition: border-color 0.2s ease;
    outline: none;
}

.yt-date-input:focus {
    border-color: #065fd4;
}

/* YouTube-Style Destinations List */
.yt-destinations-list {
    margin-bottom: 24px;
}

.yt-destination-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 12px;
}

.yt-destination-number {
    width: 32px;
    height: 32px;
    background: #ff0000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.yt-destination-info {
    flex: 1;
}

.yt-destination-name {
    font-size: 1rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0 0 4px;
}

.yt-destination-address {
    font-size: 0.875rem;
    color: #606060;
    margin: 0;
}

.yt-destination-remove {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #e5e5e5;
    color: #606060;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yt-destination-remove:hover {
    background: #ff4444;
    color: #ffffff;
}

.yt-destinations-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

/* YouTube-Style Map Container */
.yt-map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

/* YouTube-Style Landing Page Components */
.yt-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

.yt-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.yt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 24px;
}

.yt-hero-text {
    margin-bottom: 48px;
}

.yt-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 24px;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.yt-hero-subtitle {
    font-size: 1.25rem;
    margin: 0 0 40px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.yt-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.yt-hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.yt-stat-item {
    text-align: center;
    color: #ffffff;
}

.yt-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.yt-stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.yt-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.yt-scroll-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yt-scroll-arrow:hover {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* YouTube-Style Sections */
.yt-features-section {
    padding: 80px 24px;
    background: #f9f9f9;
    max-width: 1200px;
    margin: 0 auto;
}

.yt-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.yt-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f0f0f;
    margin: 0 0 16px;
    line-height: 1.2;
}

.yt-section-subtitle {
    font-size: 1.125rem;
    color: #606060;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.yt-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.yt-feature-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.yt-feature-card:hover {
    border-color: #ff0000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.yt-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
    font-size: 24px;
}

.yt-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0 0 16px;
}

.yt-feature-card p {
    color: #606060;
    margin: 0;
    line-height: 1.6;
}

/* Clean Minimal AI Loading Screen */
.clean-ai-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.clean-loading-container {
    text-align: center;
    max-width: 500px;
    padding: 60px 40px;
}

.clean-loading-header {
    margin-bottom: 48px;
}

.clean-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 32px;
    position: relative;
}

.spinner-ring {
    width: 60px;
    height: 60px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.clean-loading-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0 0 16px;
    line-height: 1.3;
}

.clean-loading-subtitle {
    font-size: 1rem;
    color: #606060;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

.clean-progress-section {
    margin-bottom: 48px;
}

.clean-progress-bar {
    width: 100%;
    height: 6px;
    background: #f3f3f3;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
}

.clean-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0000, #e60000);
    border-radius: 3px;
    width: 0%;
    transition: width 0.5s ease;
}

.clean-progress-text {
    font-size: 0.9rem;
    color: #606060;
    margin: 0;
    font-weight: 500;
}

.clean-didyouknow-section {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

.clean-fact-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.clean-fact-icon {
    width: 36px;
    height: 36px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #856404;
    font-size: 16px;
}

.clean-fact-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0;
}

.clean-fact-content p {
    font-size: 0.95rem;
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

/* Mobile responsiveness for clean loader */
@media (max-width: 768px) {
    .clean-loading-container {
        padding: 40px 24px;
        max-width: 90%;
    }
    
    .clean-loading-title {
        font-size: 1.5rem;
    }
    
    .clean-spinner {
        width: 50px;
        height: 50px;
        margin-bottom: 24px;
    }
    
    .spinner-ring {
        width: 50px;
        height: 50px;
    }
}

.yt-loading-header {
    margin-bottom: 40px;
}

.yt-loading-logo {
    position: relative;
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
}

.yt-logo-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.yt-logo-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ytPulse 2s infinite;
}

@keyframes ytPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.yt-loading-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.yt-loading-subtitle {
    font-size: 1.125rem;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.yt-loading-progress {
    margin-bottom: 40px;
}

.yt-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 16px;
}

.yt-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.8));
    border-radius: 3px;
    width: 0%;
    transition: width 0.5s ease;
    animation: progressShimmer 1.5s infinite;
}

@keyframes progressShimmer {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

.yt-progress-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.yt-morocco-insights {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
}

.yt-insight-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.yt-insight-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.yt-insight-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: #ffffff;
}

.yt-insight-content p {
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.yt-loading-stats {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    flex-wrap: wrap;
}

.yt-stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.yt-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.yt-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* YouTube-Style Tour Preview */
.yt-preview-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 32px;
    border: 1px solid #e5e5e5;
}

.yt-preview-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f0f0f;
    margin: 0 0 12px;
    line-height: 1.2;
}

.yt-preview-subtitle {
    font-size: 1.125rem;
    color: #606060;
    margin: 0 0 32px;
    font-weight: 400;
}

.yt-tour-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.yt-stat-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.2s ease;
}

.yt-stat-card:hover {
    border-color: #ff0000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.yt-price-card {
    border-color: #ff0000;
    background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
}

.yt-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 4px;
    line-height: 1.2;
}

.yt-price-card .yt-stat-value {
    color: #ff0000;
    font-size: 1.75rem;
}

.yt-stat-label {
    font-size: 0.875rem;
    color: #606060;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Clean Tour Sections */
.tour-highlights,
.tour-description,
.tour-itinerary {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.tour-highlights h3,
.tour-description h3,
.tour-itinerary h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tour-highlights h3 i,
.tour-description h3 i,
.tour-itinerary h3 i {
    color: #ff0000;
    font-size: 1.125rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.highlight-item {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item i {
    color: #ff0000;
    font-size: 1.125rem;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    font-size: 0.95rem;
    color: #0f0f0f;
    font-weight: 500;
}

/* Clean Itinerary Design */
.itinerary-day {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.itinerary-day:hover {
    border-color: #ff0000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.day-number {
    width: 40px;
    height: 40px;
    background: #ff0000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.day-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f0f0f;
    margin: 0;
}

.day-content {
    color: #606060;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Clean Brochure Section */
.brochure-download {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.brochure-download h3 {
    color: #0f0f0f;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.brochure-download h3 i {
    color: #ff0000;
    font-size: 1.25rem;
}

.brochure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-top: 24px;
}

.brochure-description p {
    color: #606060;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.brochure-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brochure-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    font-size: 0.95rem;
    color: #495057;
}

.brochure-features i {
    color: #28a745;
    width: 20px;
    height: 20px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.email-capture-form {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
}

.email-capture-form h4 {
    color: #0f0f0f;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 16px;
}

.email-form .form-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.email-form input[type="email"] {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    color: #0f0f0f;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.email-form input[type="email"]:focus {
    border-color: #ff0000;
}

.download-btn {
    height: 48px;
    padding: 0 24px;
    background: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.download-btn:hover {
    background: #e60000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.download-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.privacy-note {
    color: #6c757d;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

.success-message {
    text-align: center;
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 24px;
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: #28a745;
}

.success-message h4 {
    color: #155724;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.success-message p {
    color: #155724;
    margin: 0;
    line-height: 1.5;
}

/* Clean Contact Section */
.contact-section {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-section h3 {
    color: #0f0f0f;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-section h3 i {
    color: #ff0000;
    font-size: 1.25rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: flex-start;
    margin-top: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s ease;
}

.contact-card:hover {
    border-color: #ff0000;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.15);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #fff5f5;
    border: 1px solid #fecaca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #0f0f0f;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.contact-details p {
    color: #495057;
    margin: 0 0 8px;
    font-size: 0.95rem;
}

.contact-details small {
    color: #6c757d;
    font-size: 0.85rem;
}

.contact-email a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 500;
}

.contact-email a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
}

.contact-form-container h4 {
    color: #0f0f0f;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    color: #495057;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    background: #ffffff;
    color: #0f0f0f;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #ff0000;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn {
    width: 100%;
    height: 48px;
    background: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-submit-btn:hover {
    background: #e60000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.contact-submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Mobile responsiveness for brochure and contact */
@media (max-width: 768px) {
    .brochure-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .brochure-download,
    .contact-section {
        padding: 24px;
        margin: 24px 0;
    }
    
    .email-form .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Loading States */
.download-btn.loading,
.contact-submit-btn.loading {
    background: #6c757d;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.download-btn.loading i,
.contact-submit-btn.loading i {
    animation: spin 1s linear infinite;
}

/* Error and Success States */
.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 12px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-error i {
    color: #dc3545;
}

.form-success {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 12px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-success i {
    color: #17a2b8;
}

/* PDF Download Section */
.pdf-download-section {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.pdf-download-content {
    max-width: 400px;
    margin: 0 auto;
}

.pdf-download-btn {
    background: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 16px;
}

.pdf-download-btn:hover {
    background: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.pdf-download-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pdf-download-btn i {
    font-size: 1.25rem;
}

.download-description {
    color: #606060;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Fixed Contact Bar */
.fixed-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #ff0000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 16px 0;
}

.contact-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    font-size: 1rem;
}

.contact-item a {
    color: #0f0f0f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #ff0000;
}

/* Add bottom padding to prevent contact bar overlap */
.tour-preview {
    padding-bottom: 100px;
}

/* Ensure PDF button is visible above contact bar */
.pdf-download-section {
    position: relative;
    z-index: 999;
    margin-bottom: 40px;
}

/* Mobile responsiveness for contact bar */
@media (max-width: 768px) {
    .contact-bar-content {
        flex-direction: column;
        gap: 12px;
        padding: 12px 16px;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .tour-preview {
        padding-bottom: 120px;
    }
    
    .pdf-download-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    /* Hide non-printable elements */
    .fixed-contact-bar,
    .pdf-download-section,
    .tour-actions,
    .tours-navigation,
    .yt-step-indicator,
    .start-over-btn,
    nav,
    header,
    footer {
        display: none !important;
    }
    
    /* Hide contact bar when printing class is added */
    body.printing .fixed-contact-bar {
        display: none !important;
    }
    
    /* Show print-only elements */
    .print-only {
        display: block !important;
    }
    
    /* Print contact header styles */
    #print-contact-header {
        background: #f8f9fa;
        border: 2px solid #ff0000;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 30px;
        page-break-inside: avoid;
    }
    
    .print-contact-info h3 {
        color: #ff0000;
        margin: 0 0 15px 0;
        font-size: 18px;
        border-bottom: 1px solid #eee;
        padding-bottom: 8px;
    }
    
    .print-contact-details {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .print-contact-details p {
        margin: 0;
        font-size: 14px;
        flex: 1;
        min-width: 200px;
    }
    
    /* Tour preview print styles */
    .tour-preview {
        padding-bottom: 0 !important;
        margin: 0;
    }
    
    /* Ensure proper page breaks */
    .yt-preview-section {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
    
    /* Style headings for print */
    .yt-preview-title {
        color: #000 !important;
        font-size: 24px !important;
    }
    
    .yt-preview-subtitle {
        color: #666 !important;
        font-size: 16px !important;
    }
    
    /* Print-friendly colors */
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }
}

/* Hide print-only elements by default */
.print-only {
    display: none;
}

/* Mobile Responsiveness for YouTube Layout */
@media (max-width: 768px) {
    .yt-main-title {
        font-size: 2rem;
    }
    
    .yt-hero-title {
        font-size: 2.5rem;
    }
    
    .yt-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .yt-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .yt-hero-stats {
        gap: 32px;
        margin-top: 48px;
    }
    
    .yt-stat-number {
        font-size: 2rem;
    }
    
    .yt-features-section {
        padding: 64px 24px;
    }
    
    .yt-section-title {
        font-size: 2rem;
    }
    
    .yt-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .yt-block {
        padding: 24px 20px;
    }
    
    .yt-popular-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 12px;
    }
    
    .yt-vibes-grid {
        gap: 8px;
        justify-content: center;
    }
    
    .yt-vibe-card {
        font-size: 0.8rem;
        padding: 8px 12px;
        min-height: 36px;
    }
    
    .yt-step-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .yt-navigation-block {
        flex-direction: column;
        gap: 12px;
    }
    
    .yt-btn {
        width: 100%;
        max-width: 320px;
    }
    
    .yt-generate-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .yt-duration-number {
        font-size: 3rem;
    }
    
    .yt-counter-number {
        font-size: 2.5rem;
    }
    
    .yt-counter-large {
        gap: 16px;
    }
    
    .yt-counter-btn-large {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .yt-travelers-presets,
    .yt-duration-presets {
        justify-content: center;
    }
}

/* ========================================
   CSS Reset & Base Styles
   ======================================== */

.tours-generator {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tours-generator *,
.tours-generator *::before,
.tours-generator *::after {
    box-sizing: border-box;
}

/* ========================================
   Typography System
   ======================================== */

.tours-generator h1 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #1a1a1a;
}

.tours-generator h2 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: #1a1a1a;
}

.tours-generator h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
}

.tours-generator p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    color: #4a4a4a;
}

/* ========================================
   Button System - Fully Rounded & Simple
   ======================================== */

.tours-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    min-height: 48px;
    outline: none;
    white-space: nowrap;
}

.tours-btn:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

.tours-btn-primary {
    background: #007cba;
    color: #ffffff;
}

.tours-btn-primary:hover {
    background: #005a87;
    color: #ffffff;
    text-decoration: none;
}

.tours-btn-secondary {
    background: #f6f7f7;
    color: #1a1a1a;
    border: 1px solid #ddd;
}

.tours-btn-secondary:hover {
    background: #e9ecef;
    color: #1a1a1a;
    text-decoration: none;
}

.tours-btn-ghost {
    background: transparent;
    color: #007cba;
    border: 1px solid #007cba;
}

.tours-btn-ghost:hover {
    background: #007cba;
    color: #ffffff;
    text-decoration: none;
}

.tours-btn:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    border: 1px solid #ddd;
}

.tours-btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 36px;
}

.tours-btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-height: 56px;
}

/* ========================================
   Layout System
   ======================================== */

.tours-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tours-section {
    padding: 2rem 0;
}

.tours-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ========================================
   Landing Page - Clean & Simple
   ======================================== */

.tours-landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 1rem;
}

.tours-landing-content {
    text-align: center;
    color: white;
    max-width: 600px;
}

.tours-landing h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.tours-landing p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.tours-landing-cta {
    background: #ffffff;
    color: #007cba;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

.tours-landing-cta:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #005a87;
}

/* ========================================
   Tour Builder - Clean Interface
   ======================================== */

.tours-builder {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1rem;
    margin: 2rem auto;
    max-width: 1000px;
    border: 1px solid #e9ecef;
}

.tours-builder-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tours-builder h2 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.tours-builder-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

/* ========================================
   Progress Indicator - Minimal
   ======================================== */

.tours-progress {
    width: 100%;
    height: 4px;
    background: #f1f3f4;
    border-radius: 2px;
    margin: 2rem 0 1rem 0;
    overflow: hidden;
}

.tours-progress-bar {
    height: 100%;
    background: #007cba;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.tours-progress-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.progress-step {
    color: #6c757d;
    font-weight: 400;
}

.progress-step.active {
    color: #007cba;
    font-weight: 500;
}

.progress-step.completed {
    color: #28a745;
}

/* ========================================
   Step Container
   ======================================== */

.tours-step {
    display: none;
    padding: 1rem 0;
}

.tours-step.active {
    display: block;
}

.tours-step h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

/* ========================================
   Form Elements - Clean & Accessible
   ======================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: #ffffff;
    min-height: 48px;
}

.form-control:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.form-control.error {
    border-color: #dc3545;
}

/* ========================================
   Grid Systems - Mobile First
   ======================================== */

.destinations-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.vibes-grid {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

/* ========================================
   Cards - Destination & Vibe Selection
   ======================================== */

.destination-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
    min-height: 200px;
    background: #f8f9fa;
}

.destination-card:hover {
    border-color: #007cba;
}

.destination-card.selected {
    border-color: #007cba;
    background: rgba(0, 124, 186, 0.05);
}

.destination-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

.destination-content {
    padding: 1rem;
}

.destination-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.destination-description {
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.4;
}

.vibe-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vibe-card:hover {
    border-color: #007cba;
}

.vibe-card.selected {
    border-color: #007cba;
    background: rgba(0, 124, 186, 0.05);
}

.vibe-icon {
    font-size: 2rem;
    color: #007cba;
    margin-bottom: 0.5rem;
}

.vibe-name {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.vibe-description {
    font-size: 0.875rem;
    color: #6c757d;
}

/* ========================================
   Duration Slider - Minimal
   ======================================== */

.duration-container {
    text-align: center;
    margin: 2rem 0;
}

.duration-slider-container {
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.duration-slider {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #f1f3f4;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.duration-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007cba;
    cursor: pointer;
}

.duration-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #007cba;
    cursor: pointer;
    border: none;
}

.duration-display {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 1rem 0 0.5rem 0;
}

.duration-label {
    color: #6c757d;
    font-size: 1rem;
}

/* ========================================
   Layout - Two Column System
   ======================================== */

.tours-layout {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.tours-main {
    min-height: 400px;
}

.tours-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.tours-summary h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.summary-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-label {
    font-weight: 500;
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.summary-value {
    color: #6c757d;
    font-size: 0.875rem;
}

.summary-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.highlight-tag {
    background: #007cba;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 400;
}

/* ========================================
   Navigation
   ======================================== */

.tours-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    gap: 1rem;
}

/* ========================================
   Tour Preview Page
   ======================================== */

.tour-preview {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.tour-preview-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
}

.tour-preview h1 {
    color: white;
    margin-bottom: 1rem;
}

.tour-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    text-align: center;
}

.meta-value {
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    color: white;
}

.meta-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   Itinerary Display
   ======================================== */

.tour-itinerary {
    margin: 2rem 0;
}

.itinerary-day {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.day-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.day-title.user-selected {
    color: #007cba;
}

.day-content {
    color: #4a4a4a;
    line-height: 1.6;
}

/* ========================================
   Map Styles
   ======================================== */

.destinations-map {
    height: 300px;
    border-radius: 12px;
    margin: 1.5rem 0;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

/* ========================================
   Enhanced Autocomplete Search Styles
   ======================================== */

.map-search-container,
.search-container {
    position: relative;
    margin-bottom: 1rem;
}

.places-search-section {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.search-input-group:focus-within {
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.search-input-group.has-results {
    border-radius: 50px 50px 0 0;
}

.map-search-input,
.places-search-input {
    flex: 1;
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    font-size: 1rem;
    background: transparent;
    min-height: 48px;
    outline: none;
    color: #1a1a1a;
}

.map-search-input::placeholder,
.places-search-input::placeholder {
    color: #6c757d;
    font-size: 0.875rem;
}

.search-btn {
    background: #007cba;
    color: #ffffff;
    border: none;
    padding: 0 1.25rem;
    min-height: 48px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 0 50px 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #005a87;
}

.search-btn:focus {
    outline: 2px solid #007cba;
    outline-offset: 2px;
}

.search-btn i {
    font-size: 1rem;
}

/* Loading indicator inside search input */
.search-input-group .search-loading {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #e9ecef;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

.search-input-group.loading .search-loading {
    display: block;
}

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

/* Enhanced Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #007cba;
    border-top: none;
    border-radius: 0 0 16px 16px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f3f4;
}

.search-results::-webkit-scrollbar-thumb {
    background: #007cba;
    border-radius: 3px;
}

.search-results-header {
    padding: 0.75rem 1rem 0.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-result-item {
    padding: 1rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.search-result-item:hover {
    background: #f8f9fa;
    border-left: 4px solid #007cba;
    padding-left: calc(1rem - 4px);
}

.search-result-item:active {
    background: #e9ecef;
    transform: scale(0.99);
}

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

.search-result-item.keyboard-selected {
    background: #f0f7ff;
    border-left: 4px solid #007cba;
    padding-left: calc(1rem - 4px);
}

.search-result-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-name {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.875rem;
    margin: 0 0 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-result-address {
    color: #6c757d;
    font-size: 0.75rem;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.place-type-badge {
    background: #007cba;
    color: #ffffff;
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.place-type-badge.city { background: #28a745; }
.place-type-badge.landmark { background: #dc3545; }
.place-type-badge.attraction { background: #ffc107; color: #1a1a1a; }
.place-type-badge.restaurant { background: #6f42c1; }
.place-type-badge.hotel { background: #20c997; }

.source-info {
    color: #6c757d;
    font-size: 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.importance-stars {
    color: #ffc107;
    font-size: 0.75rem;
}

.add-place-indicator {
    width: 32px;
    height: 32px;
    background: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    opacity: 0.7;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.search-result-item:hover .add-place-indicator {
    opacity: 1;
    transform: scale(1.1);
    background: #218838;
}

/* Search states */
.search-no-results {
    padding: 2rem 1rem;
    text-align: center;
    color: #6c757d;
}

.search-no-results i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #dee2e6;
}

.search-error {
    padding: 1rem;
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
    font-size: 0.875rem;
}

/* Quick suggestions */
.quick-suggestions {
    padding: 0.5rem 0;
}

.quick-suggestion-item {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-left: 4px solid #2196f3;
}

.quick-suggestion-item .search-result-icon {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

/* Popular places */
.popular-place-item {
    background: linear-gradient(135deg, #fff3e0 0%, #f8f9fa 100%);
    border-left: 4px solid #ff9800;
}

.popular-place-item .search-result-icon {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

/* ========================================
   Responsive Search Styles
   ======================================== */

@media (max-width: 768px) {
    .places-search-section {
        padding: 1.5rem 1rem;
        margin: 1rem 0;
    }
    
    .search-input-group {
        border-radius: 12px;
    }
    
    .search-input-group.has-results {
        border-radius: 12px 12px 0 0;
    }
    
    .map-search-input,
    .places-search-input {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    .search-btn {
        padding: 0 1rem;
        border-radius: 0 12px 12px 0;
    }
    
    .search-results {
        border-radius: 0 0 12px 12px;
        max-height: 280px;
    }
    
    .search-result-item {
        padding: 0.875rem;
        gap: 0.5rem;
    }
    
    .search-result-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .search-result-name {
        font-size: 0.8125rem;
    }
    
    .search-result-address {
        font-size: 0.6875rem;
    }
    
    .add-place-indicator {
        width: 28px;
        height: 28px;
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .search-result-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .search-result-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .add-place-indicator {
        position: absolute;
        top: 0.875rem;
        right: 0.875rem;
    }
}

/* ========================================
   New Clean Destination Step Layout
   ======================================== */

/* Step Header */
.step-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f3f4;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.step-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Step Content */
.step-content {
    margin-bottom: 3rem;
}

/* Search Section */
.destination-search {
    margin-bottom: 2.5rem;
}

.search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Two Column Layout */
.destination-layout {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* Selected Destinations Column */
.selected-destinations {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
}

.section-header {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-subtitle {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0.25rem 0 0 0;
    line-height: 1.4;
}

.places-counter {
    background: #007cba;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    min-width: 1.5rem;
    text-align: center;
    line-height: 1;
}

/* Empty State */
.destinations-list {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state {
    text-align: center;
    color: #6c757d;
}

.empty-icon {
    font-size: 2.5rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.empty-text {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    margin: 0 0 0.5rem 0;
}

.empty-hint {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* Destinations Actions */
.destinations-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4;
}

.action-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 40px;
}

.action-btn-primary {
    background: #007cba;
    color: #ffffff;
}

.action-btn-primary:hover {
    background: #005a87;
}

.action-btn-ghost {
    background: transparent;
    color: #6c757d;
    border: 1px solid #e9ecef;
}

.action-btn-ghost:hover {
    background: #f8f9fa;
    color: #495057;
}

/* Map Section */
.destination-map {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
    min-height: 300px;
}

.destinations-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}

.map-legend {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-marker {
    width: 8px;
    height: 8px;
    background: #007cba;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px rgba(0, 124, 186, 0.3);
}

.legend-text {
    font-size: 0.75rem;
    color: #495057;
    font-weight: 500;
}

/* Popular Destinations */
.popular-destinations {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.popular-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.popular-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 80px;
}

.popular-item:hover {
    border-color: #007cba;
    background: rgba(0, 124, 186, 0.05);
    transform: translateY(-2px);
}

.popular-item:active {
    transform: translateY(0);
}

.popular-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.popular-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    line-height: 1.2;
}

/* Selected Place Items */
.destination-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.destination-item:hover {
    border-color: #007cba;
    background: rgba(0, 124, 186, 0.02);
}

.destination-number {
    width: 24px;
    height: 24px;
    background: #007cba;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.destination-info {
    flex: 1;
    min-width: 0;
}

.destination-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.destination-address {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.destination-remove {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.destination-remove:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

/* Navigation */
.step-navigation {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #f1f3f4;
}

.navigation-hint {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0.75rem 0 0 0;
    line-height: 1.4;
}

/* ========================================
   Responsive Design for New Layout
   ======================================== */

/* Mobile First - Single Column */
@media (max-width: 767px) {
    .step-header {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-subtitle {
        font-size: 0.875rem;
    }
    
    .destination-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .selected-destinations,
    .destination-map {
        padding: 1rem;
    }
    
    .destinations-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .popular-item {
        padding: 0.75rem 0.5rem;
        min-height: 70px;
    }
    
    .popular-icon {
        font-size: 1.25rem;
    }
    
    .popular-name {
        font-size: 0.75rem;
    }
    
    .destinations-map {
        height: 250px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .destination-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .popular-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .step-content {
        margin-bottom: 4rem;
    }
    
    .destination-layout {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .destinations-map {
        height: 400px;
    }
    
    .popular-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ========================================
   Contact & Brochure Forms
   ======================================== */

.brochure-download,
.contact-section {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    margin: 2rem 0;
    border: 1px solid #e9ecef;
}

.brochure-download h3,
.contact-section h3 {
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.contact-icon {
    font-size: 1.5rem;
    color: #007cba;
    margin-bottom: 0.5rem;
}

.contact-details h4 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.contact-details p {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

/* ========================================
   AI Loading Screen
   ======================================== */

.ai-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.loading-container {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.loading-header h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.loading-progress {
    margin: 1.5rem 0;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #f1f3f4;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #007cba;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.morocco-facts {
    margin-top: 1.5rem;
}

.fact-container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact-text {
    color: #4a4a4a;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* ========================================
   Responsive Design - Mobile First
   ======================================== */

/* Small screens (phones) - base styles above */

/* Medium screens (tablets) */
@media (min-width: 768px) {
    .tours-container {
        padding: 0 2rem;
    }
    
    .tours-builder {
        padding: 3rem 2rem;
    }
    
    .tours-landing h1 {
        font-size: 2.5rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vibes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .tours-layout {
        grid-template-columns: 1fr 300px;
    }
    
    .tours-summary {
        position: sticky;
        top: 2rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens (desktops) */
@media (min-width: 1024px) {
    .tours-section {
        padding: 3rem 0;
    }
    
    .tours-landing h1 {
        font-size: 3rem;
    }
    
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vibes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .tours-layout {
        grid-template-columns: 1fr 350px;
    }
    
    .destinations-map {
        height: 400px;
    }
}

/* ========================================
   Accessibility & Focus States
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .tours-btn-primary {
        background: #000000;
        color: #ffffff;
        border: 2px solid #000000;
    }
    
    .tours-btn-secondary {
        background: #ffffff;
        color: #000000;
        border: 2px solid #000000;
    }
}

/* ========================================
   Utility Classes
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }