/* ============================================
   TIMETRAVEL AGENCY — Design System
   Dark Mode Premium | Gold Accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dark: #9a7a2e;
    --bg-deep: #080810;
    --bg-card: #0f0f1a;
    --bg-glass: rgba(255, 255, 255, 0.04);
    --border: rgba(201, 168, 76, 0.2);
    --border-hover: rgba(201, 168, 76, 0.5);
    --text-primary: #f0ede8;
    --text-secondary: #9a9080;
    --text-muted: #5a5550;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 4rem; }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080810;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(8, 8, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; color: var(--gold); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin-left: auto;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 50px;
    transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080810;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.stars {
    position: absolute;
    inset: 0;
}
.star {
    position: absolute;
    border-radius: 50%;
    background: white;
    animation: twinkle var(--dur, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
    0%, 100% { opacity: var(--min-op, 0.2); transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}
.nebula {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 80% 70%, rgba(100, 60, 180, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}
.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 2.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    display: inline-flex;
}
.stat { text-align: center; }
.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== ABOUT ===== */
.about {
    padding: 8rem 0;
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.about-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}
.about-features { display: flex; flex-direction: column; gap: 1.2rem; }
.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.feature:hover { border-color: var(--border-hover); background: rgba(201,168,76,0.05); }
.feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.feature strong { display: block; color: var(--text-primary); margin-bottom: 0.2rem; }
.feature p { color: var(--text-secondary); font-size: 0.9rem; }

/* Clock animation */
.about-visual { display: flex; align-items: center; justify-content: center; }
.clock-container {
    position: relative;
    width: 300px; height: 300px;
    display: flex; align-items: center; justify-content: center;
}
.clock-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
}
.ring-1 {
    width: 300px; height: 300px;
    border-color: rgba(201,168,76,0.15);
    animation: rotate 20s linear infinite;
}
.ring-2 {
    width: 220px; height: 220px;
    border-color: rgba(201,168,76,0.25);
    animation: rotate 12s linear infinite reverse;
}
.ring-3 {
    width: 140px; height: 140px;
    border-color: rgba(201,168,76,0.4);
    animation: rotate 7s linear infinite;
}
.ring-1::after, .ring-2::after, .ring-3::after {
    content: '';
    position: absolute;
    top: -4px; left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.clock-center {
    position: relative;
    z-index: 2;
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 40px rgba(201,168,76,0.4);
}
.clock-symbol { font-size: 2rem; color: #080810; }

/* ===== DESTINATIONS ===== */
.destinations {
    padding: 8rem 0;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.03), transparent);
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.dest-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.dest-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-gold);
}
.dest-featured {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201,168,76,0.1);
}
.dest-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.dest-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.dest-card:hover .dest-img { transform: scale(1.05); }
.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,16,0.8) 0%, transparent 60%);
}
.dest-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    padding: 4px 12px;
    background: rgba(8,8,16,0.8);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    backdrop-filter: blur(8px);
}
.dest-badge-featured {
    background: rgba(201,168,76,0.2);
    border-color: var(--gold);
    color: var(--gold);
}
.dest-year {
    position: absolute;
    bottom: 1rem; right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(201,168,76,0.5);
}
.dest-content { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.dest-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}
.dest-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
}
.dest-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.dest-highlights span {
    padding: 4px 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-secondary);
}
.dest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.price-label { display: block; font-size: 0.75rem; color: var(--text-muted); }
.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
}
.btn-dest {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080810;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}
.btn-dest:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,0.4); }

/* ===== QUIZ ===== */
.quiz-section { padding: 8rem 0; }
.quiz-container {
    max-width: 680px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
    position: relative;
}
.quiz-progress {
    height: 3px;
    background: var(--bg-glass);
    border-radius: 2px;
    margin-bottom: 2.5rem;
    overflow: hidden;
}
.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0%;
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeSlide 0.4s ease; }
@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}
.quiz-question {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}
.quiz-options { display: flex; flex-direction: column; gap: 0.8rem; }
.quiz-option {
    padding: 1rem 1.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}
.quiz-option:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.08);
    color: var(--gold);
    transform: translateX(4px);
}
.quiz-result {
    display: none;
    text-align: center;
    animation: fadeSlide 0.5s ease;
}
.quiz-result.active { display: block; }
.result-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}
.result-title {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.result-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}
#quizRetry {
    display: block;
    margin: 1rem auto 0;
    font-size: 0.9rem;
}

/* ===== RESERVATION ===== */
.reservation { padding: 8rem 0; }
.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 3rem;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option { background: var(--bg-card); }
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 16px;
    border-radius: var(--radius-sm);
}
.form-success {
    display: none;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-sm);
    color: #10b981;
    font-size: 0.95rem;
}
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== CHATBOT ===== */
.chatbot-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}
.chatbot-toggle {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    transition: var(--transition);
    position: relative;
}
.chatbot-toggle:hover { transform: scale(1.1); }
.chat-icon, .chat-close { position: absolute; transition: var(--transition); }
.chat-close { opacity: 0; font-size: 1rem; color: #080810; }
.chatbot-widget.open .chat-icon { opacity: 0; }
.chatbot-widget.open .chat-close { opacity: 1; }
.chat-notif {
    position: absolute;
    top: -4px; right: -4px;
    width: 20px; height: 20px;
    background: #ef4444;
    border-radius: 50%;
    font-size: 0.7rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}
.chatbot-widget.open .chat-notif { opacity: 0; transform: scale(0); }
.chatbot-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: none;
    flex-direction: column;
    max-height: 520px;
}
.chatbot-widget.open .chatbot-window { display: flex; animation: chatOpen 0.3s ease; }
@keyframes chatOpen {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-header {
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-agent { display: flex; align-items: center; gap: 0.8rem; }
.agent-avatar {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: #080810;
}
.chat-agent strong { display: block; color: var(--text-primary); font-size: 0.95rem; }
.agent-status { font-size: 0.75rem; color: #10b981; }
.chat-close-btn {
    background: none; border: none;
    color: var(--text-muted); cursor: pointer;
    font-size: 1rem; padding: 4px;
    transition: var(--transition);
}
.chat-close-btn:hover { color: var(--text-primary); }
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.chat-msg { display: flex; }
.chat-msg.bot { justify-content: flex-start; }
.chat-msg.user { justify-content: flex-end; }
.msg-bubble {
    max-width: 80%;
    padding: 0.7rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.6;
}
.chat-msg.bot .msg-bubble {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}
.chat-msg.user .msg-bubble {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080810;
    font-weight: 500;
    border-bottom-right-radius: 4px;
}
.msg-typing .msg-bubble { padding: 0.9rem 1.2rem; }
.typing-dots { display: flex; gap: 4px; align-items: center; }
.typing-dots span {
    width: 6px; height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-6px); }
}
.chat-suggestions {
    padding: 0.5rem 1rem;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border);
}
.suggestion {
    padding: 4px 10px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}
.suggestion:hover { border-color: var(--gold); color: var(--gold); }
.chat-input-area {
    padding: 0.8rem 1rem;
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid var(--border);
}
#chatInput {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}
#chatInput:focus { border-color: var(--gold); }
#chatSend {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 50%;
    color: #080810;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}
#chatSend:hover { transform: scale(1.1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .destinations-grid { grid-template-columns: 1fr 1fr; }
    .dest-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-visual { order: -1; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .destinations-grid { grid-template-columns: 1fr; }
    .dest-card:last-child { grid-column: auto; max-width: 100%; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .chatbot-window { width: 320px; right: -10px; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .stat-divider { width: 40px; height: 1px; }
    .quiz-container { padding: 2rem 1.5rem; }
    .reservation-form { padding: 2rem 1.5rem; }
}
