/* Travel & Hospitality Industry Landing Page — Leadnest.ai */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --tv-primary:       #0284c7;
    --tv-primary-dark:  #0369a1;
    --tv-primary-deep:  #075985;
    --tv-accent:        #06b6d4;
    --tv-accent-dark:   #0891b2;
    --tv-text:          #1f2937;
    --tv-text-muted:    #64748b;
    --tv-heading:       #0f172a;
    --tv-bg-light:      #f0f9ff;
    --tv-white:         #ffffff;
    --tv-border:        #bae6fd;
}

html { height: auto !important; overflow-x: clip !important; }
body { height: auto !important; overflow-x: clip !important; overflow-y: visible !important; position: relative; margin: 0; padding: 0; }
main { overflow: visible !important; }

/* STICKY HEADER */
.leadNav-Main-Large {
    position: sticky !important; top: 0 !important; z-index: 9999 !important;
    background: #ffffff !important; box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    width: 100% !important; transform: none !important; opacity: 1 !important;
    visibility: visible !important; transition: box-shadow 0.3s ease !important;
    animation: none !important;
}
.leadNav-Main-Large.nav-hide,.leadNav-Main-Large.nav-top,.leadNav-Main-Large.nav-compact,
.leadNav-Main-Large.nav-show,.leadNav-Main-Large.nav-slide-in {
    transform: none !important; opacity: 1 !important; visibility: visible !important;
    position: sticky !important; animation: none !important;
}
.leadNav-Main-Large.nav-slide-in,.leadNav-Main-Large.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important; }
@media (min-width: 992px) { body { padding-top: 0 !important; } .tv-wrapper { padding-top: 0 !important; } }
@media (max-width: 991px) {
    .leadNav-Main-Large { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; }
    body { padding-top: 70px !important; } .tv-wrapper { padding-top: 0 !important; }
}

/* WRAPPER */
.tv-wrapper { font-family: 'Poppins', sans-serif; color: var(--tv-text); padding-top: 0; position: relative; width: 100%; max-width: 100vw; }
.tv-bg-light { background: var(--tv-bg-light); }
.tv-bg-white { background: var(--tv-white); }

/* HERO */
.tv-hero { height: calc(100vh - 90px); min-height: 620px; background: var(--tv-white); position: relative; overflow: hidden; display: flex; align-items: center; }
.tv-hero-bg-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(to right, rgba(2,132,199,0.10) 1px, transparent 1px), linear-gradient(to bottom, rgba(2,132,199,0.10) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    pointer-events: none; z-index: 1;
}
.tv-hero-content { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 60px; padding: 0 24px; position: relative; z-index: 2; width: 100%; }
.tv-hero-text { flex: 1.15; }
.tv-hero-visual { flex: 0.95; position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; animation: tvHeroFloat 6s infinite ease-in-out; }
@keyframes tvHeroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.tv-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: rgba(2,132,199,0.07); color: var(--tv-primary); border: 1px solid rgba(2,132,199,0.2); border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 28px; }
.tv-hero-text h1 { font-size: 52px; font-weight: 600; line-height: 1.12; margin-bottom: 24px; color: var(--tv-heading); letter-spacing: -0.03em; }
.tv-accent-cyan { color: var(--tv-primary); }
.tv-hero-text p { font-size: 18px; line-height: 1.6; color: #4b5563; margin-bottom: 36px; max-width: 95%; font-weight: 400; }
.tv-hero-image { width: 100%; height: auto; border-radius: 24px; box-shadow: 0 24px 64px rgba(2,132,199,0.12), 0 4px 16px rgba(0,0,0,0.08); display: block; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease; }
.tv-hero-image:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(2,132,199,0.16), 0 8px 24px rgba(0,0,0,0.1); }
.tv-hero-cta { display: flex; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }
.tv-btn { padding: 14px 32px; border-radius: 12px; font-weight: 600; font-family: 'Poppins', sans-serif; transition: all 0.2s cubic-bezier(0.4,0,0.2,1); cursor: pointer; border: none; font-size: 15px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none !important; }
.tv-btn-lg { padding: 16px 36px; font-size: 16px; }
/* BUTTONS — always brand purple regardless of page theme */
.tv-btn-primary {
    background: #673AB7 !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(103,58,183,0.25);
}
.tv-btn-primary:hover {
    background: #5e35b1 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103,58,183,0.3);
}
.tv-btn-primary i { transition: transform 0.2s ease; }
.tv-btn-primary:hover i { transform: translateX(4px); }
.tv-btn-secondary { background: #f3f4f6; color: #111827 !important; border: 1px solid transparent; }
.tv-btn-secondary:hover { background: #e5e7eb; transform: translateY(-2px); }
.tv-btn-white { background: white; color: #673AB7 !important; padding: 18px 40px; font-size: 16px; font-weight: 600; }
.tv-btn-white:hover { background: #f8fafc; transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.tv-btn-outline { background: rgba(255,255,255,0.05); color: white !important; border: 2px solid rgba(255,255,255,0.3); padding: 18px 40px; font-size: 16px; font-weight: 600; backdrop-filter: blur(10px); }
.tv-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px) scale(1.02); }
.tv-sticky-cta-btn { width: 100%; padding: 16px 24px; background: #673AB7 !important; color: white; border: none; border-radius: 16px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 8px 24px rgba(103,58,183,0.35); transition: all 0.2s ease; }
.tv-sticky-cta-btn:hover { background: #5e35b1 !important; transform: translateY(-2px); }

.tv-hero-trust { display: flex; align-items: center; gap: 28px; padding-top: 28px; border-top: 1px solid var(--tv-border); }
.tv-trust-divider { width: 1px; height: 24px; background: #7dd3fc; flex-shrink: 0; }
.tv-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #374151; font-weight: 500; }
.tv-trust-item i { color: var(--tv-primary); font-size: 18px; }

/* MOBILE STICKY CTA */
.tv-sticky-cta { display: none; position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 9999; width: calc(100% - 48px); max-width: 400px; }
@media (max-width: 768px) { .tv-sticky-cta.tv-sticky-visible { display: block; } }
@media (min-width: 769px) { .tv-sticky-cta, .tv-sticky-cta.tv-sticky-visible { display: none !important; } }

/* PARTNER */
.tv-partner-section { padding: 70px 0; background: linear-gradient(to bottom, #ffffff, #f0f9ff); border-bottom: 1px solid var(--tv-border); }
.tv-trusted-heading { text-align: center; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600; color: var(--tv-primary); margin-bottom: 50px; text-transform: uppercase; letter-spacing: 2px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.tv-trusted-heading::before,.tv-trusted-heading::after { content: ''; height: 1px; width: 60px; background: rgba(2,132,199,0.2); }
.tv-partner-img { opacity: 0.85; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); max-height: 40px; width: auto !important; margin: 0 auto; }
.tv-partner-img:hover { transform: scale(1.08); opacity: 1; }

/* STATS BAND */
.tv-stats-band { background: #0f172a; padding: 70px 0; color: white; position: relative; z-index: 10; }
.tv-stats-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; text-align: center; flex-wrap: wrap; gap: 32px; }
.tv-stat-item { flex: 1; min-width: 140px; }
.tv-stat-value { font-size: 36px; font-weight: 600; margin-bottom: 8px; color: var(--tv-accent); font-family: 'Poppins', sans-serif; }
.tv-stat-label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; opacity: 0.55; text-transform: uppercase; }

/* FEATURE SECTIONS */
.tv-feature-section { padding: 100px 0; }
.tv-feature-container { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 80px; padding: 0 24px; }
.tv-feature-reverse { flex-direction: row-reverse; }
.tv-feature-content { flex: 1; }
.tv-feature-image { flex: 1; }
.tv-feature-badge { display: inline-block; padding: 6px 14px; background: rgba(2,132,199,0.07); color: var(--tv-primary); border: 1px solid rgba(2,132,199,0.2); border-radius: 6px; font-size: 11px; font-weight: 600; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.tv-feature-content h2 { font-size: 36px; font-weight: 600; line-height: 1.25; margin-bottom: 20px; color: var(--tv-heading); letter-spacing: -0.02em; }
.tv-feature-desc { font-size: 17px; line-height: 1.7; color: var(--tv-text-muted); margin-bottom: 32px; font-weight: 400; }
.tv-feature-highlights { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tv-feature-highlights li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--tv-heading); }
.tv-feature-highlights li i { color: var(--tv-primary); font-size: 18px; }
.tv-feature-img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 20px 50px rgba(2,132,199,0.08), 0 4px 16px rgba(0,0,0,0.06); display: block; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease; }
.tv-feature-img:hover { transform: translateY(-4px); box-shadow: 0 28px 64px rgba(2,132,199,0.12), 0 8px 24px rgba(0,0,0,0.08); }

/* SECTION HEADER */
.tv-section-header { text-align: center; margin-bottom: 60px; }
.tv-section-header-sm { margin-bottom: 40px; }
.tv-section-eyebrow { font-size: 13px; font-weight: 600; color: var(--tv-primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.tv-section-header h2 { font-size: 42px; font-weight: 600; color: var(--tv-heading); margin-bottom: 20px; }
.tv-section-header p { font-size: 17px; color: var(--tv-text-muted); font-weight: 400; }

/* CAPABILITIES GRID */
.tv-capabilities-section { padding: 100px 0; }
.tv-capabilities-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.tv-capabilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tv-cap-card { background: white; padding: 32px 24px; border-radius: 20px; border: 1px solid var(--tv-border); transition: all 0.3s ease; position: relative; }
.tv-cap-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.04); border-color: rgba(2,132,199,0.2); }
.tv-cap-icon { width: 50px; height: 50px; background: rgba(2,132,199,0.07); color: var(--tv-primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.tv-cap-card h3 { font-size: 17px; font-weight: 600; color: var(--tv-heading); margin-bottom: 16px; }
.tv-cap-list { list-style: none; padding: 0; margin: 0; }
.tv-cap-list li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--tv-text-muted); margin-bottom: 10px; font-weight: 400; }
.tv-cap-list li i { color: var(--tv-primary); font-size: 14px; }
.tv-cap-featured { background: #f0f9ff; border: 1.5px solid rgba(2,132,199,0.3); }
.tv-cap-badge { position: absolute; top: -12px; right: 24px; background: var(--tv-primary); color: white; padding: 4px 12px; border-radius: 100px; font-size: 9px; font-weight: 600; letter-spacing: 0.5px; }
.tv-cap-note { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--tv-border); font-size: 12px; color: var(--tv-primary); font-weight: 500; }

/* USE CASES */
.tv-use-cases-section { padding: 100px 0; }
.tv-use-cases-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.tv-use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tv-use-case-card { background: var(--tv-bg-light); padding: 36px 28px; border-radius: 20px; text-align: center; border: 1px solid transparent; transition: all 0.3s ease; }
.tv-use-case-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(2,132,199,0.08); border-color: rgba(2,132,199,0.2); background: white; }
.tv-use-case-icon { width: 64px; height: 64px; background: rgba(2,132,199,0.08); color: var(--tv-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 20px; transition: background 0.3s ease; }
.tv-use-case-card:hover .tv-use-case-icon { background: rgba(2,132,199,0.14); }
.tv-use-case-card h3 { font-size: 19px; font-weight: 600; color: var(--tv-heading); margin-bottom: 10px; }
.tv-use-case-card p { color: var(--tv-text-muted); font-size: 14px; line-height: 1.6; font-weight: 400; }

/* FAQ */
.tv-faq-section { padding: 100px 0; }
.tv-faq-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.tv-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.tv-faq-col { display: flex; flex-direction: column; gap: 16px; }
.tv-faq-item { background: var(--tv-white); border-radius: 16px; border: 1px solid var(--tv-border); overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.tv-faq-item:hover { border-color: rgba(2,132,199,0.25); box-shadow: 0 4px 20px rgba(2,132,199,0.06); }
.tv-faq-item.tv-faq-open { border-color: rgba(2,132,199,0.3); box-shadow: 0 8px 30px rgba(2,132,199,0.08); }
.tv-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; background: transparent; border: none; cursor: pointer; text-align: left; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--tv-heading); line-height: 1.4; transition: color 0.2s ease; }
.tv-faq-question:hover { color: var(--tv-primary); }
.tv-faq-item.tv-faq-open .tv-faq-question { color: var(--tv-primary); }
.tv-faq-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: rgba(2,132,199,0.07); color: var(--tv-primary); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background 0.25s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1); }
.tv-faq-item.tv-faq-open .tv-faq-icon { background: var(--tv-primary); color: white; transform: rotate(45deg); }
.tv-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease; padding: 0 24px; }
.tv-faq-item.tv-faq-open .tv-faq-answer { max-height: 300px; padding: 0 24px 22px; }
.tv-faq-answer p { font-size: 14.5px; line-height: 1.75; color: var(--tv-text-muted); font-weight: 400; border-top: 1px solid var(--tv-border); padding-top: 16px; margin: 0; }

/* CTA */
.tv-cta-section { padding: 100px 24px; position: relative; }
.tv-cta-container { max-width: 1200px; margin: 0 auto; background: linear-gradient(135deg, #0284c7 0%, #075985 50%, #0c4a6e 100%); border-radius: 40px; padding: 80px 40px; text-align: center; color: white; position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(2,132,199,0.3); }
.tv-cta-container::before { content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%); transform: rotate(30deg); pointer-events: none; }
.tv-cta-container::after { content: ''; position: absolute; bottom: -50%; right: -10%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 60%); transform: rotate(-30deg); pointer-events: none; }
.tv-cta-shape { position: absolute; background: rgba(255,255,255,0.04); border-radius: 50%; pointer-events: none; }
.tv-cta-shape-1 { width: 300px; height: 300px; top: -150px; right: -50px; }
.tv-cta-shape-2 { width: 200px; height: 200px; bottom: -100px; left: -50px; }
.tv-cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.tv-cta-content h2 { font-size: 46px; font-weight: 600; margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.tv-cta-content p  { font-size: 19px; opacity: 0.9; margin-bottom: 44px; line-height: 1.6; font-weight: 400; }
.tv-cta-buttons { display: flex; gap: 20px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.tv-cta-note { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; padding: 12px 24px; background: rgba(0,0,0,0.2); border-radius: 100px; backdrop-filter: blur(5px); font-weight: 500; }
.tv-cta-note i { color: #7dd3fc; }

/* ANIMATIONS */
.tv-reveal       { opacity: 0; transform: translateY(30px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.tv-reveal-left  { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.tv-reveal-right { opacity: 0; transform: translateX(50px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.tv-animate-in .tv-reveal,    .tv-animate-in.tv-reveal,
.tv-animate-in .tv-reveal-left,  .tv-animate-in.tv-reveal-left,
.tv-animate-in .tv-reveal-right, .tv-animate-in.tv-reveal-right { opacity: 1 !important; transform: translate(0,0) scale(1) !important; }
.tv-delay-1 { transition-delay: 0.1s; } .tv-delay-2 { transition-delay: 0.2s; }
.tv-delay-3 { transition-delay: 0.3s; } .tv-delay-4 { transition-delay: 0.4s; }
.tv-parallax-layer { transition: transform 0.1s ease-out; will-change: transform; }
@media (prefers-reduced-motion: reduce) {
    .tv-reveal,.tv-reveal-left,.tv-reveal-right,.tv-hero-visual { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* RESPONSIVE */
@media (max-width: 1100px) { .tv-capabilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 991px) {
    .tv-hero { height: auto !important; min-height: auto !important; padding: 60px 0 80px !important; }
    .tv-hero-content { flex-direction: column; text-align: center; gap: 40px; padding: 0 20px !important; }
    .tv-hero-text h1 { font-size: 36px !important; } .tv-hero-text p { margin-left: auto; margin-right: auto; }
    .tv-hero-cta { justify-content: center; } .tv-hero-trust { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .tv-trust-divider { display: none; }
    .tv-hero-visual { width: 100%; max-width: 520px; margin: 0 auto; animation: none; }
    .tv-feature-container { flex-direction: column !important; gap: 40px; padding: 0 20px !important; }
    .tv-feature-reverse { flex-direction: column !important; }
    .tv-feature-content, .tv-feature-image { flex: none !important; width: 100%; }
    .tv-feature-highlights { grid-template-columns: 1fr; }
    .tv-feature-section { padding: 70px 0 !important; }
    .tv-capabilities-grid { grid-template-columns: repeat(2, 1fr) !important; } .tv-capabilities-section { padding: 70px 0 !important; }
    .tv-use-cases-grid { grid-template-columns: repeat(2, 1fr) !important; } .tv-use-cases-section { padding: 70px 0 !important; }
    .tv-faq-grid { grid-template-columns: 1fr !important; } .tv-faq-section { padding: 70px 0 !important; } .tv-faq-container { padding: 0 20px; }
    .tv-cta-container { padding: 60px 24px !important; border-radius: 28px !important; }
    .tv-cta-content h2 { font-size: 30px !important; } .tv-cta-content p { font-size: 16px !important; }
    .tv-cta-buttons { flex-direction: column; align-items: center; } .tv-btn-lg { width: 100%; max-width: 320px; justify-content: center; }
    .tv-cta-section { padding: 60px 16px !important; }
    .tv-stats-band { padding: 50px 20px; } .tv-stats-container { justify-content: center; gap: 24px; } .tv-stat-value { font-size: 30px; }
    .tv-section-header { padding: 0 20px; } .tv-section-header h2 { font-size: 30px !important; }
}
@media (max-width: 576px) {
    .tv-hero-text h1 { font-size: 26px !important; }
    .tv-use-cases-grid { grid-template-columns: 1fr !important; } .tv-capabilities-grid { grid-template-columns: 1fr !important; }
    .tv-cta-content h2 { font-size: 24px !important; } .tv-stat-value { font-size: 26px; }
}
