:root {
    --bg-dark: #020813;
    --bg-blue: #001f3f;
    --cyan: #00f2fe;
    --blue: #4facfe;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(0, 242, 254, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg-dark); color: var(--text-main); line-height: 1.6; padding-bottom: 80px; }
h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; }

.highlight { background: linear-gradient(90deg, var(--cyan), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.btn { padding: 0.8rem 1.5rem; border-radius: 30px; font-weight: 600; cursor: pointer; transition: 0.3s; border: none; }
.btn-primary { background: linear-gradient(90deg, var(--blue), var(--cyan)); color: #000; width: 100%; font-size: 1.1rem; margin-top: 1rem; }
.btn-primary:hover { box-shadow: 0 0 20px rgba(0, 242, 254, 0.6); transform: scale(1.02); }

/* Navbar & Stats */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 5%; background: rgba(2, 8, 19, 0.9); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--glass-border); }
.logo-container { display: flex; align-items: center; gap: 1rem; }
.site-logo { width: 140px; height: 140px; display: block; object-fit: contain; }
.live-stats { display: flex; gap: 1rem; }
.stat-badge { 
    background: transparent; 
    border: 1px solid var(--cyan); 
    color: var(--cyan); 
    padding: 0.5rem 1.2rem; 
    border-radius: 30px; 
    font-size: 0.9rem; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 0.5rem; 
}
.highlight-badge { 
    box-shadow: 0 0 10px rgba(0,242,254,0.3); 
}

/* GTranslate Premium Dropdown Styling */
.gtranslate_wrapper {
    display: flex;
    align-items: center;
}
.gtranslate_wrapper .gt_switcher,
.gtranslate_wrapper select,
.gt_switcher {
    background-color: var(--cyan) !important;
    border: 1px solid var(--cyan) !important;
    border-radius: 30px !important;
    padding: 0.5rem 1.2rem !important;
    transition: 0.3s !important;
    font-family: 'Inter', sans-serif !important;
    color: #0a0f19 !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.gtranslate_wrapper .gt_switcher:hover,
.gtranslate_wrapper select:hover,
.gt_switcher:hover {
    background-color: #0a0f19 !important;
    color: var(--cyan) !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.gtranslate_wrapper select option,
.gt_switcher .gt_option {
    background-color: #0a0f19 !important;
    color: var(--cyan) !important;
}
.gtranslate_wrapper select option:hover,
.gt_switcher .gt_option:hover {
    background-color: var(--cyan) !important;
    color: #0a0f19 !important;
}

.gt_switcher .gt_selected a,
.gt_switcher .gt_selected a:visited {
    color: inherit !important;
    text-decoration: none !important;
}
.gt_switcher:hover a {
    color: var(--cyan) !important;
}
.gt_option {
    background-color: rgba(2, 8, 19, 0.95) !important;
}
.gt_option a {
    color: white !important;
}
.gt_option a:hover {
    background-color: var(--cyan) !important;
    color: #0a0f19 !important;
}

/* Hero */
.hero { min-height: 40vh; display: flex; align-items: center; padding: 2rem 5%; background: linear-gradient(rgba(2, 8, 19, 0.8), rgba(2, 8, 19, 0.95)), url('images/ai_hero_bg.png') center/cover no-repeat; gap: 2rem; position: relative; }
.hero::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%); pointer-events: none; }
.hero-content { flex: 1; position: relative; z-index: 2; }
.hero-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1rem; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-box { background: var(--glass-bg); padding: 1.5rem; border-radius: 12px; border: 1px solid var(--glass-border); text-align: center; }
.stat-box h3 { color: var(--cyan); font-size: 1.8rem; }
.stat-box p { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; }

/* Carousel */
.hero-visual { flex: 1; display: flex; justify-content: center; }
.video-container { width: 100%; max-width: 500px; aspect-ratio: 16/9; background: #000; border-radius: 16px; overflow: hidden; position: relative; border: 1px solid var(--cyan); box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.video-container iframe, .video-container video { width: 100%; height: 100%; object-fit: cover; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: white; border: none; padding: 1rem; cursor: pointer; z-index: 10; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Form */
.form-section { padding: 1rem 5% 4rem 5%; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; }
.form-container { max-width: 800px; margin: 0 auto; background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 16px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
input, select, textarea { width: 100%; padding: 1rem; background: rgba(0,0,0,0.4); border: 1px solid var(--glass-border); color: white; border-radius: 8px; font-family: 'Inter'; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--cyan); }
@media(max-width: 768px) { .form-row { grid-template-columns: 1fr; } .hero { flex-direction: column; } }

/* Sticky Banner - Professional Ticker Tape */
.sticky-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #0b0e14; border-top: 1px solid #2a2e39; padding: 0.5rem 5%; z-index: 1000; box-shadow: 0 -5px 20px rgba(0,0,0,0.8); display: flex; align-items: center; gap: 1rem; overflow: hidden; font-family: 'Inter', sans-serif; }
.ticker-wrap { flex: 1; overflow: hidden; white-space: nowrap; box-sizing: border-box; position: relative; }
.ticker-wrap::before, .ticker-wrap::after { content: ""; position: absolute; top: 0; width: 50px; height: 100%; z-index: 2; }
.ticker-wrap::before { left: 0; background: linear-gradient(to right, #0b0e14 0%, transparent 100%); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, #0b0e14 0%, transparent 100%); }
.ticker { display: inline-block; animation: ticker 40s linear infinite; padding-left: 0; width: max-content; }
.ticker:hover { animation-play-state: paused; }
.ticker-item { display: inline-block; padding: 0 1.5rem; font-size: 0.9rem; color: #d1d4dc; font-weight: 400; align-items: center; }
.ticker-item strong { color: var(--cyan); font-weight: 600; }
.ticker-dot { display: inline-block; width: 6px; height: 6px; background-color: var(--cyan); border-radius: 50%; margin-right: 1.5rem; vertical-align: middle; box-shadow: 0 0 5px var(--cyan); }
/* Floating Action Buttons - stacked correctly, no overlap */
.btn-floating {
    position: fixed;
    right: 2%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #000;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1001;
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    white-space: nowrap;
    /* Tooltip */
    position: fixed;
}
.btn-floating:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 242, 254, 0.6);
}
/* Tooltip on hover */
.btn-floating .floating-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(2,8,19,0.95);
    color: var(--cyan);
    border: 1px solid var(--cyan);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 400;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    text-transform: none;
    letter-spacing: 0;
    z-index: 99999;
}
.btn-floating:hover .floating-tooltip {
    opacity: 1;
}

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4); } 70% { box-shadow: 0 0 0 15px rgba(0, 242, 254, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); } }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(calc(-33.33%), 0, 0); } }

/* Social Proof Toasts - positioned above the sticky banner and BELOW the floating buttons */
#toast-container {
    position: fixed;
    bottom: 50px;
    right: 20px;
    transform: translate(-90%, -100%);
    z-index: 9997;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    max-width: 320px;
    pointer-events: none;
}
.toast {
    background: rgba(2, 8, 19, 0.95);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--cyan);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideInLeft 0.5s ease-out, fadeOut 0.5s ease-in 4.5s forwards;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    font-size: 0.85rem;
    pointer-events: none;
}

/* Viral Info Popup (Business Cases - bottom LEFT above toasts) */
.info-popup {
    position: fixed;
    bottom: 50px; /* above sticky banner */
    left: 20px;
    width: min(460px, 92vw);
    background: rgba(2, 8, 19, 0.97);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-top: 4px solid var(--blue);
    border-radius: 12px;
    z-index: 9996;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Appears and disappears with animation */
    opacity: 0;
    transform: translateX(-120%);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.info-popup.popup-visible {
    opacity: 1;
    transform: translateX(0);
}
.info-popup.popup-hiding {
    opacity: 0;
    transform: translateX(-120%);
}
.info-popup-header { background: rgba(0, 31, 63, 0.5); padding: 0.6rem 1rem; display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 0.85rem; color: var(--cyan); border-bottom: 1px solid var(--glass-border); }
.info-popup-content { padding: 1rem; font-size: 0.82rem; line-height: 1.5; color: #fff; max-height: 200px; overflow-y: auto; }
.info-popup-content strong { color: var(--blue); }
/* progress bar showing time left */
.info-popup-timer { height: 3px; background: linear-gradient(90deg, var(--cyan), var(--blue)); animation: timerBar 15s linear forwards; transform-origin: left; }
@keyframes timerBar { from { transform: scaleX(1); } to { transform: scaleX(0); } }
.close-popup { background: none; border: none; color: #fff; cursor: pointer; font-size: 1.1rem; opacity: 0.7; transition: 0.3s; }
.close-popup:hover { opacity: 1; color: red; }

/* Confetti canvas */
#confetti-canvas { position: fixed; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index: 10001; }

@keyframes slideInLeft { from { transform: translateX(-120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }

/* Booking Section */
.booking-section { padding: 4rem 5%; }
.booking-container { max-width: 1000px; margin: 0 auto; padding: 2rem; border-radius: 16px; border: 1px solid var(--glass-border); background: var(--glass-bg); backdrop-filter: blur(12px); }
.booking-embed { width: 100%; height: 700px; border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.05); }
.booking-embed iframe { border: none; }

.btn-secondary { background: transparent; border: 1px solid var(--cyan); color: var(--cyan); font-size: 0.9rem; padding: 0.5rem 1.2rem; border-radius: 30px; font-weight: 600; display: flex; align-items: center; gap: 8px;}
.btn-secondary:hover { background: var(--cyan); color: #000; box-shadow: 0 0 15px var(--cyan); }

/* Congrats Overlay */
#congrats-overlay { position: fixed; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.9); z-index: 10000; display: flex; justify-content: center; align-items: center; flex-direction: column; }
.congrats-content { text-align: center; background: var(--glass-bg); padding: 4rem; border-radius: 20px; border: 1px solid var(--cyan); box-shadow: 0 0 50px rgba(0,242,254,0.3); animation: zoomIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes zoomIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }



@keyframes blinker { 50% { opacity: 0; } }
.blinker { animation: blinker 1s linear infinite; font-weight: 900; }

