/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: none;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.video-backgrounds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.bg-video.primary {
    opacity: 0.4;
    filter: brightness(0.3) contrast(1.3) saturate(1.2);
}

.bg-video.secondary {
    opacity: 0.2;
    filter: brightness(0.2) contrast(1.5) hue-rotate(180deg);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 20, 40, 0.7) 25%, 
        rgba(0, 40, 80, 0.6) 50%, 
        rgba(0, 60, 120, 0.7) 75%, 
        rgba(0, 0, 0, 0.8) 100%);
    z-index: -2;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 150, 255, 0.1), rgba(0, 200, 255, 0.05));
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
    animation-duration: 20s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 10%;
    animation-delay: 15s;
    animation-duration: 35s;
}

.shape-5 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    animation-delay: 20s;
    animation-duration: 28s;
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    opacity: 0.7;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 15s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 20s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 16s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 14s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; animation-duration: 22s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; animation-duration: 17s; }

.main-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.header-section {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1.5s ease-out;
}

.logo-container {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.main-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 150, 255, 0.6));
    transition: all 0.3s ease;
    animation: logoFloat 4s ease-in-out infinite;
}

.main-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 50px rgba(0, 150, 255, 0.9));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.3), transparent);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite alternate;
    z-index: -1;
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: titleReveal 2s ease-out 0.5s both;
}

.title-word {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #0099ff, #0066ff, #0033ff, #00d4ff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite, textGlow 2s ease-in-out infinite alternate;
}

.title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.coming-soon-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.8rem;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    animation: comingSoonPulse 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.subtitle {
    font-size: 1.3rem;
    color: #b0c4de;
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1.5s ease-out 1s both;
}

.countdown-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1.5s ease-out 1.5s both;
}

.countdown-wrapper {
    text-align: center;
    background: rgba(0, 20, 40, 0.2);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4), 
        0 0 0 1px rgba(0, 150, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.countdown-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    color: #00d4ff;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: countdownTitleGlow 2s ease-in-out infinite alternate;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.time-block {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.1), rgba(0, 100, 200, 0.2));
    border: 1px solid rgba(0, 150, 255, 0.4);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-width: 140px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    overflow: hidden;
}

.time-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.time-block:hover::before {
    left: 100%;
}

.time-block:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 150, 255, 0.4);
    border-color: rgba(0, 150, 255, 0.7);
}

.time-number {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 25px rgba(0, 150, 255, 0.6);
    margin-bottom: 0.8rem;
    animation: numberGlow 1.5s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.time-label {
    font-size: 1.1rem;
    color: #b0c4de;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.time-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.1), transparent);
    border-radius: 50%;
    animation: timeGlow 2s ease-in-out infinite alternate;
    z-index: -1;
}

.time-separator {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: #00d4ff;
    font-weight: 700;
    animation: separatorBlink 1s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
}

.progress-container {
    margin-top: 2rem;
}

.progress-bar {
    position: relative;
    width: 100%;
    height: 12px;
    background: rgba(0, 50, 100, 0.3);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099ff, #0066ff, #0033ff);
    border-radius: 15px;
    width: 0%;
    transition: width 1.5s ease;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2.5s ease-in-out infinite;
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 150, 255, 0.3), transparent);
    border-radius: 15px;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

.progress-text {
    color: #b0c4de;
    font-size: 1rem;
    font-weight: 500;
}

.features-preview {
    margin-bottom: 4rem;
    animation: fadeInUp 1.5s ease-out 2s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
}

.feature-card {
    background: rgba(0, 20, 40, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(0, 150, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 150, 255, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    animation: iconFloat 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 150, 255, 0.5);
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    color: #b0c4de;
    line-height: 1.7;
    font-size: 1rem;
}

.newsletter-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1.5s ease-out 2.5s both;
}

.newsletter-container {
    text-align: center;
    background: rgba(0, 20, 40, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
}

.newsletter-container h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.newsletter-container p {
    color: #b0c4de;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.input-group input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(0, 50, 100, 0.3);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.input-group input::placeholder {
    color: #7a8b9a;
}

.input-group button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #0099ff);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 150, 255, 0.4);
}

.social-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1.5s ease-out 3s both;
}

.social-container {
    text-align: center;
}

.social-container h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 15px;
    color: #00d4ff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.social-link:hover {
    background: rgba(0, 150, 255, 0.2);
    border-color: rgba(0, 150, 255, 0.6);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 150, 255, 0.3);
}

.social-link i {
    font-size: 2rem;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer {
    animation: fadeInUp 1.5s ease-out 3.5s both;
}

.footer-content {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 20, 40, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 150, 255, 0.1);
    border-radius: 15px;
    max-width: 600px;
}

.footer-logo-img {
    max-width: 80px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-text p {
    color: #7a8b9a;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
}

.loading-content {
    text-align: center;
}

.loading-logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 2rem;
    animation: logoFloat 2s ease-in-out infinite;
}

.loading-text {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 50, 100, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    border-radius: 2px;
    animation: loadingProgress 3s ease-in-out;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes logoGlow {
    from { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes textGlow {
    from { text-shadow: 0 0 30px rgba(0, 150, 255, 0.5); }
    to { text-shadow: 0 0 60px rgba(0, 150, 255, 0.8), 0 0 90px rgba(0, 150, 255, 0.3); }
}

@keyframes comingSoonPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes countdownTitleGlow {
    from { text-shadow: 0 0 20px rgba(0, 150, 255, 0.5); }
    to { text-shadow: 0 0 40px rgba(0, 150, 255, 0.8); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes numberGlow {
    from { text-shadow: 0 0 25px rgba(0, 150, 255, 0.6); }
    to { text-shadow: 0 0 40px rgba(0, 150, 255, 0.9), 0 0 60px rgba(0, 150, 255, 0.4); }
}

@keyframes separatorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

@keyframes timeGlow {
    from { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 0.3; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes progressGlow {
    from { opacity: 0.3; }
    to { opacity: 0.6; }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .coming-soon-text {
        font-size: 1.4rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .time-block {
        min-width: 100px;
        padding: 1.5rem 1rem;
    }
    
    .time-number {
        font-size: 2.5rem;
    }
    
    .time-separator {
        font-size: 2rem;
    }
    
    .countdown-wrapper {
        padding: 2rem 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
        max-width: 300px;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 80px;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .time-separator {
        display: none;
    }
    
    .time-block {
        min-width: 250px;
    }
    
    .main-logo {
        max-width: 120px;
    }
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 150, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 150, 255, 0.5);
}

.chatbot-toggle i {
    font-size: 24px;
    color: white;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: badgePulse 2s infinite;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(0, 20, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
    animation: chatbotSlideUp 0.3s ease-out;
}

.chatbot-header {
    padding: 20px;
    background: rgba(0, 150, 255, 0.1);
    border-bottom: 1px solid rgba(0, 150, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00d4ff, #0099ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: avatarGlow 2s ease-in-out infinite alternate;
}

.chatbot-avatar i {
    color: white;
    font-size: 18px;
}

.chatbot-info h4 {
    color: #00d4ff;
    font-size: 16px;
    margin: 0;
    font-family: 'Orbitron', monospace;
}

.status {
    color: #00ff00;
    font-size: 12px;
    font-weight: 500;
}

.chatbot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #b0c4de;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    background: rgba(0, 150, 255, 0.1);
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 150, 255, 0.2);
}

.user-message .message-content {
    background: linear-gradient(45deg, #00d4ff, #0099ff);
    border: none;
}

.message-content p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.user-message .message-content p {
    color: white;
}

.message-time {
    font-size: 11px;
    color: #7a8b9a;
    margin-top: 5px;
    text-align: right;
}

.bot-message .message-time {
    text-align: left;
}

.chatbot-input {
    padding: 20px;
    border-top: 1px solid rgba(0, 150, 255, 0.2);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chatbot-input input {
    flex: 1;
    background: rgba(0, 50, 100, 0.3);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 25px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input input:focus {
    border-color: rgba(0, 150, 255, 0.6);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.3);
}

.chatbot-input input::placeholder {
    color: #7a8b9a;
}

.chatbot-input button {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #00d4ff, #0099ff);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 150, 255, 0.4);
}

.chatbot-suggestions {
    padding: 15px 20px;
    border-top: 1px solid rgba(0, 150, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion-btn {
    background: rgba(0, 150, 255, 0.1);
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 20px;
    padding: 8px 12px;
    color: #00d4ff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-btn:hover {
    background: rgba(0, 150, 255, 0.2);
    border-color: rgba(0, 150, 255, 0.5);
    transform: translateY(-2px);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 16px;
    background: rgba(0, 150, 255, 0.1);
    border-radius: 18px;
    border: 1px solid rgba(0, 150, 255, 0.2);
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    animation: typingDot 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes chatbotSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes avatarGlow {
    from {
        box-shadow: 0 0 10px rgba(0, 150, 255, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(0, 150, 255, 0.8);
    }
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 400px;
        right: -10px;
    }
    
    .chatbot-toggle {
        width: 50px;
        height: 50px;
    }
    
    .chatbot-toggle i {
        font-size: 20px;
    }
}