/* ============================================
   MOROCCO HOST - Creator Platform Stylesheet
   ============================================ */

:root {
    --primary: #C0392B;
    --primary-dark: #922B21;
    --primary-light: #E74C3C;
    --secondary: #D4A84B;
    --secondary-light: #F4D03F;
    --accent: #1A5276;
    --accent-light: #2E86C1;
    --sand: #F5DEB3;
    --cream: #FFF8F0;
    --warm-white: #FFFDF5;
    --dark: #1C1C1E;
    --dark-light: #5D6D7E;
    --gray: #95A5A6;
    --gray-light: #ECF0F1;
    --bg-light: #F8F6F3;
    --green: #27AE60;
    --green-light: #E8F8F0;
    --orange: #E67E22;
    --red: #E74C3C;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-hover: 0 16px 48px rgba(0,0,0,0.18);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-primary);
    color: var(--dark);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-light);
    font-size: 1.15rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.highlight { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}
.btn-secondary:hover { background: #C49A3C; border-color: #C49A3C; }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-white {
    background: white;
    color: var(--dark);
    border-color: white;
}
.btn-white:hover { background: var(--cream); }

.btn-lg { padding: 16px 42px; font-size: 1.1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.9rem; }

.btn-icon {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--gray-light);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.btn-icon:hover { background: var(--primary-light); color: white; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,253,245,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon { font-size: 1.8rem; }

.logo-text { color: var(--dark); }
.logo-highlight { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
    padding: 8px 16px;
    color: var(--dark-light);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--dark); background: rgba(0,0,0,0.04); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.nav-cta { padding: 10px 28px; font-size: 0.9rem; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(212,168,75,0.08) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(192,57,43,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}
.shape-1 { width: 600px; height: 600px; background: var(--secondary); top: -200px; right: -200px; animation: float 20s infinite; }
.shape-2 { width: 400px; height: 400px; background: var(--primary); bottom: -100px; left: -100px; animation: float 25s infinite reverse; }
.shape-3 { width: 300px; height: 300px; background: var(--accent-light); top: 50%; right: 10%; animation: float 15s infinite; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212,168,75,0.15);
    color: var(--secondary-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(212,168,75,0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
}

.hero-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}
.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== HOW IT WORKS / STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(192,57,43,0.08);
    line-height: 1;
}

.step-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }

.step-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.step-desc { color: var(--dark-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== FEATURES ===== */
.features { background: var(--bg-light); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon { font-size: 1.6rem; }

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-desc { color: var(--dark-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== SAMPLE TRIP PREVIEW ===== */
.trip-preview-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
}

.trip-preview-header {
    padding: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.trip-preview-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.trip-preview-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.trip-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trip-preview-body { padding: 32px 36px; display: grid; gap: 28px; }

.trip-preview-body h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 14px;
    color: var(--dark);
}

.highlights-chips { display: flex; flex-wrap: wrap; gap: 10px; }

.chip {
    padding: 8px 18px;
    background: var(--cream);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.chip:hover { background: var(--secondary); color: var(--dark); }

.mini-itinerary { display: grid; gap: 8px; }

.mini-day {
    display: flex;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.mini-day span {
    font-weight: 600;
    color: var(--primary);
    min-width: 50px;
}

.trip-preview-footer {
    padding: 20px 36px;
    background: var(--bg-light);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.testimonial-stars { font-size: 1.2rem; margin-bottom: 16px; }

.testimonial-text {
    color: var(--dark-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-tour { font-size: 0.8rem; color: var(--gray); }

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.pricing-featured {
    background: var(--dark);
    color: white;
    transform: scale(1.05);
    border-color: var(--secondary);
}
.pricing-featured:hover { transform: translateY(-4px) scale(1.05); }

.pricing-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--cream);
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.pricing-featured .pricing-badge {
    background: var(--secondary);
    color: var(--dark);
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 28px;
}
.pricing-amount span { font-size: 1rem; font-weight: 400; color: var(--gray); }
.pricing-featured .pricing-amount span { color: rgba(255,255,255,0.5); }

.pricing-features {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}
.pricing-features li { font-size: 0.95rem; color: var(--dark-light); }
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.8); }

.pricing-card .btn { width: 100%; }
.pricing-featured .btn { background: var(--secondary); border-color: var(--secondary); }
.pricing-featured .btn:hover { background: #C49A3C; }

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
    text-align: center;
    color: white;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo .logo-text { color: white; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.15); }

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: white; }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   DASHBOARD STYLES
   ============================================ */

.dashboard-hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.dashboard-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.dashboard-hero h1 { font-family: var(--font-heading); font-size: 2.2rem; }
.dashboard-hero h1 .highlight { color: var(--secondary-light); }
.dashboard-hero p { opacity: 0.85; }

.dashboard-stats { padding: 40px 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.stat-icon { font-size: 2rem; margin-bottom: 12px; }

.stat-info { margin-bottom: 8px; }

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-label { color: var(--dark-light); font-size: 0.9rem; }

.stat-change { font-size: 0.8rem; font-weight: 500; }
.stat-change.positive { color: var(--green); }
.stat-change.negative { color: var(--red); }

.dashboard-main { padding: 0 0 60px; }

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
    align-items: start;
}

.dash-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 24px;
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.dash-card-header h3 { font-size: 1.1rem; }

.dash-link { font-size: 0.9rem; color: var(--primary); font-weight: 500; }
.dash-link:hover { text-decoration: underline; }

.dash-select {
    padding: 8px 12px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
}

/* Calendar */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 16px;
}

.cal-day-header {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    padding: 8px 0;
}

.calendar-nav { display: flex; align-items: center; gap: 12px; }

.cal-nav-btn {
    background: var(--gray-light);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cal-nav-btn:hover { background: var(--primary); color: white; }

.calendar-legend {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--dark-light);
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
}
.legend-dot.trip-day { background: var(--primary); }
.legend-dot.booking-day { background: var(--secondary); }
.legend-dot.full-day { background: var(--green); }

/* Upcoming Trips */
.upcoming-list { display: grid; gap: 16px; }

.upcoming-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    align-items: center;
}

.upcoming-date {
    text-align: center;
    min-width: 52px;
}

.upcoming-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.upcoming-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.upcoming-info { flex: 1; }

.upcoming-info h4 { font-size: 0.95rem; margin-bottom: 4px; }

.upcoming-meta {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--dark-light);
    align-items: center;
    flex-wrap: wrap;
}

.upcoming-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 80px;
}

.upcoming-progress span { font-size: 0.8rem; font-weight: 600; }

.progress-bar {
    width: 60px;
    height: 6px;
    background: var(--gray-light);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--secondary);
    border-radius: 3px;
    transition: width 0.8s ease;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.status-active { background: var(--green-light); color: var(--green); }
.status-draft { background: var(--gray-light); color: var(--gray); }
.status-confirmed { background: var(--green-light); color: var(--green); }
.status-pending { background: #FFF3E0; color: var(--orange); }

/* Bookings Table */
.bookings-table { overflow-x: auto; }

.bookings-table table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.bookings-table th {
    text-align: left;
    padding: 10px 12px;
    font-weight: 600;
    color: var(--dark-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gray-light);
}

.bookings-table td { padding: 12px; border-bottom: 1px solid var(--gray-light); }

.guest-info { display: flex; align-items: center; gap: 10px; }

.guest-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

/* Bar Chart */
.bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    padding: 20px 0 0;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.bar-track {
    width: 28px;
    height: 140px;
    background: var(--gray-light);
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    border-radius: 6px;
    transition: height 1s ease;
    min-height: 4px;
}

.bar-label { font-size: 0.75rem; color: var(--dark-light); }
.bar-value { font-size: 0.75rem; font-weight: 600; color: var(--dark); }

/* Performance List */
.performance-list { display: grid; gap: 12px; }

.perf-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.perf-rank {
    width: 32px;
    height: 32px;
    background: var(--cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary);
}

.perf-info { flex: 1; }
.perf-info h4 { font-size: 0.9rem; margin-bottom: 2px; }
.perf-info span { font-size: 0.8rem; color: var(--dark-light); }
.perf-rating { font-size: 0.9rem; }

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}
.quick-action-btn:hover { background: var(--cream); transform: translateY(-2px); }

.qa-icon { font-size: 1.3rem; }

/* Messages */
.messages-list { display: grid; }

.message-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
}
.message-item:last-child { border-bottom: none; }
.message-item.unread { background: var(--bg-light); margin: -14px -14px 0; padding: 14px; border-radius: var(--radius-sm); }

.msg-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

.msg-content { flex: 1; min-width: 0; }

.msg-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.msg-name { font-weight: 600; font-size: 0.9rem; }
.msg-time { font-size: 0.75rem; color: var(--gray); }

.msg-text {
    font-size: 0.85rem;
    color: var(--dark-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unread-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 12px;
}

/* ============================================
   BUILDER / CREATE ITINERARY STYLES
   ============================================ */

.page-hero {
    padding: 120px 0 40px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.page-hero p { color: var(--dark-light); max-width: 600px; margin: 0 auto 32px; }

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray);
    background: white;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.progress-step.active { background: var(--primary); color: white; border-color: var(--primary); }
.progress-step.active span { background: rgba(255,255,255,0.2); }
.progress-step span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.builder-section { padding: 40px 0 80px; }

.builder-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.builder-step { display: none; }
.builder-step.active { display: block; }

.form-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.form-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--dark-light);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-group { margin-bottom: 22px; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: white;
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.form-textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 6px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.dest-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}
.dest-checkbox:hover { background: var(--cream); }
.dest-checkbox input[type="checkbox"] { accent-color: var(--primary); width: 16px; height: 16px; }

/* Itinerary Day Cards */
.itinerary-days { display: grid; gap: 16px; }

.itinerary-day-card {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.itinerary-day-card:hover { border-color: var(--primary); }

.day-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.day-number {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.add-day-btn { margin-top: 16px; }

/* Highlights Builder */
.highlights-builder { display: grid; gap: 10px; }

.highlight-item {
    display: flex;
    gap: 10px;
    align-items: center;
}
.highlight-item .form-input { flex: 1; }

/* Review Card */
.review-card {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 24px;
}

.review-card h3 { font-family: var(--font-heading); margin-bottom: 12px; }

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--dark-light);
    margin-bottom: 16px;
}

.review-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }

.review-destinations { font-size: 0.9rem; }

.input-with-prefix {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.input-with-prefix .input-prefix {
    padding: 12px 16px;
    background: var(--bg-light);
    color: var(--dark-light);
    font-size: 0.9rem;
    white-space: nowrap;
    border-right: 1px solid var(--gray-light);
}
.input-with-prefix .form-input { border: none; border-radius: 0; }
.input-with-prefix .form-input:focus { box-shadow: none; }

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}
.checkbox-label input[type="checkbox"] { accent-color: var(--primary); width: 18px; height: 18px; }
.checkbox-label a { color: var(--primary); text-decoration: underline; }

/* Preview Sidebar */
.builder-preview { position: sticky; top: 96px; }

.preview-sticky h3 { font-size: 1rem; margin-bottom: 16px; color: var(--dark-light); }

.preview-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
}

.preview-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px;
}

.preview-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.preview-header h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    opacity: 0.9;
}

.preview-body { padding: 20px; }

.preview-highlights { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.preview-highlights .chip { font-size: 0.75rem; padding: 4px 12px; }

.preview-itinerary-mini { display: grid; gap: 6px; }

.preview-day {
    display: flex;
    gap: 8px;
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 1px solid var(--gray-light);
}
.preview-day:last-child { border-bottom: none; }
.preview-day span { font-weight: 600; color: var(--primary); min-width: 40px; }

.preview-footer {
    padding: 12px 20px;
    background: var(--bg-light);
    font-size: 0.75rem;
}
.preview-link { color: var(--primary); word-break: break-all; }

.preview-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--dark-light);
    line-height: 1.6;
}

/* ============================================
   TRIP DETAIL STYLES
   ============================================ */

.trip-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1A1A2E, #16213E, #0F3460);
    color: white;
    position: relative;
}

.trip-hero-content { max-width: 800px; }

.trip-hosted-by {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.trip-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.trip-hero-title .highlight { color: var(--secondary-light); }

.trip-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.trip-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 36px;
}

.trip-meta-item { display: flex; align-items: center; gap: 8px; }

.trip-meta-icon { font-size: 1.3rem; }
.trip-meta-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.trip-meta-value { font-size: 0.95rem; font-weight: 600; }

.trip-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.trip-content { padding: 60px 0; }

.trip-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.trip-section {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    border: 1px solid rgba(0,0,0,0.04);
}

.trip-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.trip-section p {
    color: var(--dark-light);
    margin-bottom: 12px;
    line-height: 1.8;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-card {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: var(--transition);
}
.highlight-card:hover { background: var(--cream); }

.hl-icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.highlight-card h4 { font-size: 1rem; margin-bottom: 6px; }
.highlight-card p { font-size: 0.85rem; color: var(--dark-light); margin: 0; }

/* Itinerary Detail */
.itinerary-detail { display: grid; gap: 16px; }

.iti-day {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.iti-day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
}
.iti-day-header:hover { background: var(--cream); }

.iti-day-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--cream);
    padding: 4px 12px;
    border-radius: 6px;
}

.iti-day-info { flex: 1; }
.iti-day-info h3 { font-size: 1rem; margin-bottom: 2px; }
.iti-day-info span { font-size: 0.8rem; color: var(--dark-light); }

.iti-day-meta {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--dark-light);
}

.iti-day-body {
    padding: 16px 20px;
}
.iti-day-body p { margin: 0; font-size: 0.9rem; }

/* Incl/Excl */
.incl-excl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.incl-list ul, .excl-list ul { display: grid; gap: 8px; }

.incl-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark);
}

.excl-list h4 { font-size: 1rem; margin-bottom: 12px; }

.excl-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark-light);
}

/* Host Card */
.host-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.host-avatar-large {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.host-info h3 { font-size: 1.2rem; margin-bottom: 8px; }

.host-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--dark-light);
}

.host-info p { font-size: 0.95rem; }

/* Booking Sidebar */
.trip-sidebar { position: sticky; top: 96px; }

.booking-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
}

.booking-price {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
}

.price-per { font-size: 1rem; color: var(--dark-light); }

.booking-dates { margin-bottom: 24px; }
.booking-dates h4 { font-size: 0.95rem; margin-bottom: 12px; }

.date-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.date-option:hover, .date-option.active { border-color: var(--primary); background: var(--bg-light); }
.date-option.disabled { opacity: 0.5; cursor: not-allowed; }

.date-radio {
    width: 16px;
    height: 16px;
    border: 2px solid var(--gray);
    border-radius: 50%;
    flex-shrink: 0;
}
.date-option.active .date-radio { border-color: var(--primary); background: var(--primary); }

.date-option div { flex: 1; }
.date-range { display: block; font-size: 0.9rem; font-weight: 500; }
.date-status { font-size: 0.8rem; color: var(--green); }
.date-status.sold-out { color: var(--red); }
.date-price { font-weight: 600; font-size: 0.9rem; }

.booking-guests { margin-bottom: 20px; }
.booking-guests h4 { font-size: 0.95rem; margin-bottom: 12px; }

.guests-selector {
    display: flex;
    align-items: center;
    gap: 16px;
}

.guest-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-light);
    border-radius: 50%;
    background: white;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.guest-btn:hover { border-color: var(--primary); background: var(--bg-light); }

.guests-selector span { font-size: 1.2rem; font-weight: 600; min-width: 24px; text-align: center; }

.booking-total {
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--dark-light);
}

.total-row .discount { color: var(--green); }

.total-final { border-top: 1px solid var(--gray-light); margin-top: 8px; padding-top: 12px; }
.total-final span { font-weight: 700; font-size: 1.1rem; color: var(--dark); }
.total-final span:last-child { color: var(--primary); }

.booking-cta { width: 100%; justify-content: center; }

.booking-guarantee { margin-top: 16px; text-align: center; font-size: 0.8rem; color: var(--dark-light); }
.booking-guarantee p { margin-bottom: 4px; }

/* Reviews */
.reviews-section { background: var(--bg-light); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.review-stars { font-size: 1.1rem; margin-bottom: 14px; }

.review-text {
    color: var(--dark-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
}

.reviewer-name { display: block; font-weight: 600; font-size: 0.9rem; }
.reviewer-date { display: block; font-size: 0.8rem; color: var(--gray); }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-primary);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { background: var(--bg-light); }

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition);
    color: var(--primary);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 18px; color: var(--dark-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== ANIMATIONS ===== */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ============================================
   CREATORS PAGE STYLES
   ============================================ */

.creators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.creator-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.creator-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.creator-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 24px auto 0;
    position: relative;
    z-index: 2;
}

.creator-flag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    z-index: 2;
}

.creator-body {
    padding: 16px 24px 24px;
    text-align: center;
}

.creator-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.creator-instagram {
    display: inline-block;
    color: #E4405F;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 2px;
    transition: var(--transition);
}
.creator-instagram:hover { text-decoration: underline; }

.creator-email {
    display: inline-block;
    color: var(--accent-light);
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: var(--transition);
}
.creator-email:hover { text-decoration: underline; }

.creator-stats {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--dark-light);
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.creator-bio {
    font-size: 0.88rem;
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.creator-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 14px;
}

.creator-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--gray-light);
}

.creator-next {
    font-size: 0.8rem;
    color: var(--dark-light);
}

.creator-search input::placeholder { color: rgba(255,255,255,0.5); }

@media (max-width: 1024px) {
    .creators-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .creators-grid { grid-template-columns: 1fr; }
    .creator-footer { flex-direction: column; gap: 10px; }
    .creator-footer .btn { width: 100%; }
}

/* ============================================
   ACTIVITIES PAGE STYLES
   ============================================ */

.activity-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    background: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.activity-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.activity-icon {
    font-size: 3rem;
    text-align: center;
    padding: 24px 20px 0;
    background: var(--bg-light);
}

.activity-content { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }

.activity-category-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-start;
}
.badge-desert { background: #FFF3E0; color: #E67E22; }
.badge-mountain { background: #E8F5E9; color: #2E7D32; }
.badge-water { background: #E3F2FD; color: #1565C0; }
.badge-cultural { background: #F3E5F5; color: #7B1FA2; }
.badge-adventure { background: #FBE9E7; color: #D84315; }

.activity-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--dark-light);
    margin-bottom: 12px;
}

.activity-desc {
    font-size: 0.9rem;
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 14px;
    flex: 1;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.chip-sm { padding: 4px 12px; font-size: 0.75rem; }

.activity-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.activity-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}
.activity-price small { font-size: 0.8rem; font-weight: 400; color: var(--dark-light); }

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.modal-close:hover { background: var(--primary); color: white; }

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.modal-activity { text-align: center; }

.modal-activity-icon { font-size: 4rem; margin-bottom: 12px; }

.modal-activity h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .activities-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .activity-filters { gap: 8px; }
    .filter-btn { font-size: 0.8rem; padding: 8px 16px; }
    .modal-content { padding: 24px; margin: 16px; }
}
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-featured { transform: none; }
    .pricing-featured:hover { transform: translateY(-4px); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .builder-layout { grid-template-columns: 1fr; }
    .trip-layout { grid-template-columns: 1fr; }
    .trip-sidebar { position: static; }
    .builder-preview { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--warm-white);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 100;
    }
    .mobile-toggle { display: flex; }

    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; }

    .steps-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .incl-excl-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .hero-title { font-size: 2.2rem; }
    .trip-hero-title { font-size: 2.2rem; }
    .trip-hero-meta { flex-direction: column; gap: 12px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .form-row { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .quick-actions { grid-template-columns: 1fr; }

    .host-card { flex-direction: column; align-items: center; text-align: center; }
    .host-stats { justify-content: center; }

    .progress-step span { margin-right: 4px; }
    .progress-step { font-size: 0.75rem; padding: 6px 14px; }

    .cta-title { font-size: 2rem; }
    .dashboard-hero-content { flex-direction: column; text-align: center; }

    .iti-day-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .iti-day-meta { align-self: flex-start; }

    .section { padding: 60px 0; }
    .section-subtitle { margin-bottom: 40px; }

    .booking-card { padding: 20px; }
    .price-amount { font-size: 2rem; }

    .trip-preview-header { padding: 24px; }
    .trip-preview-body { padding: 24px; }
    .trip-preview-meta { flex-direction: column; gap: 8px; }
    .trip-preview-footer { padding: 16px 24px; }
    .trip-section { padding: 24px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-stat-number { font-size: 1.4rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 1.8rem; }
    .form-card { padding: 20px; }
    .preview-card { display: none; }
}