/* 2025 Modern Design Enhancements - Software Of Future */

/* CSS Variables for Modern Enhancements */
:root {
    --accent-color-dark: #059669;
    --accent-color-light: #34d399;
    --primary-color-light: #33d9ff;
    --secondary-color-light: #a78bfa;
    --text-muted-light: #d4d4d8;
    --border-color-light: #3f3f46;
    --glass-bg-light: rgba(255, 255, 255, 0.1);
    --glass-border-light: rgba(255, 255, 255, 0.2);
    --shadow-neon-light: 0 0 30px rgba(0, 212, 255, 0.5);
    --shadow-purple-light: 0 0 30px rgba(139, 92, 246, 0.5);
    --shadow-green-light: 0 0 30px rgba(16, 185, 129, 0.5);
    --animation-duration-fast: 0.2s;
    --animation-duration-slow: 0.8s;
    --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --backdrop-filter-light: blur(10px);
    --backdrop-filter-heavy: blur(30px);
}

/* Voice control removed */
.voice-control-btn { display: none !important; }

/* Reduced motion toggle removed */
.reduced-motion-toggle { display: none !important; }

.voice-control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.voice-control-btn.listening {
    animation: voiceListening 1s ease-in-out infinite;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.voice-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.voice-control-btn.listening .voice-indicator {
    opacity: 1;
    animation: voicePulse 1s ease-in-out infinite;
}

@keyframes voiceListening {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes voicePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Accessibility Controls */
.accessibility-controls {
    position: fixed;
    top: 100px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.accessibility-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.accessibility-btn.active {
    background: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.reduced-motion-toggle.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

/* Voice Feedback Animation */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



/* Reduced Motion Mode */
.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Neural Network Animation */
.neural-network {
    position: relative;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.5s ease;
}

/* Morphing Elements */
.morphing {
    transition: clip-path 1s ease-in-out;
}

/* Eye Tracked Elements */
.eye-tracked {
    transition: transform 0.3s ease;
}

/* Lazy Load Elements */
.lazy-load {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.lazy-load.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Virtual Scroll Container */
.virtual-scroll {
    height: 400px;
    overflow-y: auto;
    position: relative;
}

.virtual-item {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Neumorphism 2.0 - Advanced Shadow System */
.neumorphism-2025 {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1));
    border-radius: 20px;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.3),
        -20px -20px 60px rgba(255, 255, 255, 0.1),
        inset 5px 5px 10px rgba(0, 0, 0, 0.1),
        inset -5px -5px 10px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.neumorphism-2025:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        25px 25px 75px rgba(0, 0, 0, 0.4),
        -25px -25px 75px rgba(255, 255, 255, 0.15),
        inset 8px 8px 15px rgba(0, 0, 0, 0.15),
        inset -8px -8px 15px rgba(255, 255, 255, 0.08);
}

/* AI-Powered Animations */
.ai-animate {
    animation: aiBreathing 4s ease-in-out infinite;
    position: relative;
}

.ai-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: aiScan 3s ease-in-out infinite;
    border-radius: inherit;
}

@keyframes aiBreathing {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1) saturate(1);
    }
    25% {
        transform: scale(1.02) rotate(0.5deg);
        filter: brightness(1.1) saturate(1.2);
    }
    50% {
        transform: scale(1.05) rotate(0deg);
        filter: brightness(1.2) saturate(1.4);
    }
    75% {
        transform: scale(1.02) rotate(-0.5deg);
        filter: brightness(1.1) saturate(1.2);
    }
}

@keyframes aiScan {
    0% {
        transform: translateX(-100%) skewX(-15deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) skewX(-15deg);
        opacity: 0;
    }
}

/* Holographic Effects */
.holographic {
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%,
        rgba(255, 255, 255, 0.1) 100%
    );
    position: relative;
    overflow: hidden;
}

.holographic::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent,
        rgba(0, 212, 255, 0.2),
        transparent,
        rgba(139, 92, 246, 0.2),
        transparent
    );
    animation: holographicRotate 8s linear infinite;
    border-radius: inherit;
}

@keyframes holographicRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Glassmorphism 2.0 - Advanced Glass Effects */
.glass-2025 {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-2025::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
}

.glass-2025:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Advanced Micro-interactions */
.micro-interaction {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.micro-interaction:hover {
    transform: scale(1.05);
}

.micro-interaction:active {
    transform: scale(0.98);
}

.micro-interaction::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.micro-interaction:hover::before {
    width: 300px;
    height: 300px;
}

/* Voice-Ready Interface Elements */
.voice-ready {
    position: relative;
    cursor: pointer;
}

.voice-ready::after {
    content: '🎤';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    animation: voicePulse 2s ease-in-out infinite;
}

.voice-ready:hover::after {
    opacity: 1;
}



/* Sustainable Design Patterns */
.sustainable {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* 2025 Modern Button Styles */
.btn-2025 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-2025:hover::before {
    left: 100%;
}

.btn-2025:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-2025:active {
    transform: translateY(0);
}

/* 2025 Modern Card Styles */
.card-2025 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-2025:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-2025:hover::before {
    opacity: 1;
}

/* Advanced Text Gradients */
.text-gradient-2025 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Enhanced Glow Effects */
.glow-2025 {
    position: relative;
}

.glow-2025::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: inherit;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.glow-2025:hover::after {
    opacity: 1;
    animation: glowPulse2025 2s ease-in-out infinite;
}

@keyframes glowPulse2025 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

/* Modern Loading States */
.loading-2025 {
    position: relative;
    overflow: hidden;
}

.loading-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer2025 1.5s ease-in-out infinite;
}

@keyframes shimmer2025 {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Scroll Reveal Animations */
.scroll-reveal-2025 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal-2025.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Modern Form Inputs */
.form-input-2025 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    transition: all 0.3s ease;
}

.form-input-2025:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input-2025.valid {
    border-color: var(--accent-color);
}

.form-input-2025.invalid {
    border-color: #ef4444;
}

/* Select dropdown styles */
.form-input-2025[type="select"],
.form-input-2025 select,
select.form-input-2025 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-input-2025[type="select"] option,
.form-input-2025 select option,
select.form-input-2025 option {
    background: #1a1a1a;
    color: white;
    padding: 8px 12px;
}

.form-input-2025[type="select"]:focus,
.form-input-2025 select:focus,
select.form-input-2025:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Webkit specific styles for better dropdown appearance */
.form-input-2025[type="select"]::-ms-expand,
.form-input-2025 select::-ms-expand,
select.form-input-2025::-ms-expand {
    display: none;
}

/* Custom dropdown arrow */
.form-group {
    position: relative;
}

.form-group::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

/* Ensure select text is visible */
select.form-input-2025 {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
    padding-right: 40px;
}

/* Hover effect for options */
select.form-input-2025 option:hover {
    background: rgba(0, 212, 255, 0.2);
}

/* Contact Options Layout */
.contact-options {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Call Us Button */
.call-us-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #00d4ff, #8b5cf6);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.call-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    background: linear-gradient(135deg, #00b8e6, #7c3aed);
}

.call-us-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.3);
}

.call-us-btn i {
    font-size: 16px;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive design for contact options */
@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .call-us-btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* Modern Message Styles */
.message-2025 {
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.message-success-2025 {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.message-error-2025 {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Responsive Design for 2025 */
@media (max-width: 768px) {
    /* Disable heavy effects on mobile for better performance */
    .neumorphism-2025 {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
        transform: none !important;
    }
    
    .glass-2025 {
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        background: rgba(255, 255, 255, 0.05) !important;
    }
    
    .btn-2025 {
        padding: 10px 20px;
        font-size: 13px;
        transition: all 0.2s ease !important;
    }
    
    .btn-2025:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }

    /* Optimize voice control for mobile */
    .voice-control-btn {
        bottom: 80px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 16px;
        transition: all 0.2s ease !important;
    }
    
    .voice-control-btn:hover {
        transform: none !important;
    }

    .accessibility-controls {
        top: 80px;
        right: 15px;
    }

    .accessibility-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
        transition: all 0.2s ease !important;
    }
    
    .accessibility-btn:hover {
        transform: none !important;
    }
    
    /* Disable complex animations on mobile */
    .holographic-2025::before,
    .holographic-2025::after {
        display: none !important;
    }
    
    .micro-interaction-2025::before,
    .micro-interaction-2025::after {
        display: none !important;
    }
    
    /* Simplify card effects on mobile */
    .card-2025 {
        transition: box-shadow 0.2s ease, transform 0.1s ease !important;
    }
    
    .card-2025:active {
        transform: scale(0.98) !important;
    }
    
    /* Optimize text effects for mobile */
    .text-gradient-2025 {
        background: var(--primary-color) !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: unset !important;
        background-clip: unset !important;
    }
}

/* Accessibility and Performance */
@media (prefers-reduced-motion: reduce) {
    .ai-animate,
    .holographic::before,
    .micro-interaction::before {
        animation: none;
    }
    
    .scroll-reveal-2025 {
        transition: none;
    }
}

@media (prefers-color-scheme: dark) {
    .glass-2025 {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .neumorphism-2025 {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
    }
}

@media (prefers-contrast: high) {
    .glass-2025 {
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-2025 {
        border: 2px solid currentColor;
    }
}

/* GPU Acceleration for Smooth Animations */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

/* Enhanced Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Modern Button with Advanced Effects */
.btn-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* 3D Card Hover Effects */
.card-hover-3d {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.card-hover-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) translateZ(20px);
}

/* Advanced Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Loading Shimmer Effect */
.loading-shimmer {
    position: relative;
    overflow: hidden;
}

.loading-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Floating Animation */
.floating-enhanced {
    animation: floatEnhanced 6s ease-in-out infinite;
}

@keyframes floatEnhanced {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

/* Glow Effects for Different Colors */
.glow-primary {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.glow-secondary {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.glow-accent {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }
}

/* Animated Border */
.border-animated {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.border-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 400% 400%;
    animation: borderRotate 3s ease-in-out infinite;
    z-index: -1;
    border-radius: inherit;
}

@keyframes borderRotate {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Particle Effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Glass Modal */
.modal-glass {
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

/* Glass Tooltip */
.tooltip-glass {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: white;
}

/* Glass Progress Bar */
.progress-glass {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    height: 8px;
}

.progress-glass .progress-fill {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    height: 100%;
    transition: width 0.3s ease;
    position: relative;
}

.progress-glass .progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShimmer 2s ease-in-out infinite;
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Navigation Indicator */
.nav-indicator {
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-indicator,
.nav-link.active .nav-indicator {
    width: 100%;
}

/* Form Validation Styles */
.form-input-valid {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Message Styles */
.message-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
}

.message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .glass-card {
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .btn-modern {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .floating-enhanced,
    .border-animated::before,
    .particle {
        animation: none;
    }
    
    .scroll-reveal {
        transition: none;
    }
}

@media (prefers-color-scheme: dark) {
    .glass-card {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .btn-modern {
        background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    }
}

@media (prefers-contrast: high) {
    .glass-card {
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-modern {
        border: 2px solid currentColor;
    }
}

/* 2025 Advanced Features - AI Chatbot */
.ai-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3000;
}

/* Mobile full-screen chatbot */
@media (max-width: 768px) {
    /* Keep toggle pinned bottom-right on mobile */
    .ai-chatbot {
        bottom: 20px;
        right: 20px;
        left: auto;
        width: auto;
        height: auto;
        z-index: 3000;
    }

    /* When opened, container covers the screen */
    .chatbot-container {
        width: 100% !important;
        height: 100vh !important;
        max-width: none !important;
        max-height: none !important;
        border-radius: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 3001 !important;
    }
    
    /* Ensure chatbot doesn't overlap with mobile menubar */
    .ai-chatbot {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    /* Mobile responsive adjustments */
    .chatbot-container {
        width: 100% !important;
        height: 100vh !important;
        max-width: none !important;
        max-height: none !important;
        border-radius: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 3001 !important;
    }
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.chatbot-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    background: #10b981;
    border-radius: 50%;
    animation: chatbotPulse 2s ease-in-out infinite;
}

@keyframes chatbotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.chatbot-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.chatbot-info h4 {
    margin: 0;
    color: white;
    font-size: 14px;
}

.chatbot-info .status {
    color: #10b981;
    font-size: 12px;
}

.chatbot-close {
    margin-left: auto;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 12px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.bot-message {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.user-message {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    align-self: flex-end;
    color: white;
}

.message-content {
    margin-bottom: 4px;
    line-height: 1.4;
}

.message-time {
    font-size: 10px;
    opacity: 0.7;
}

.chatbot-input {
    padding: 16px;
    display: flex;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chatbot-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    outline: none;
}

.chatbot-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.chatbot-input-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chatbot-input button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-input button:hover {
    transform: scale(1.05);
}

.chatbot-input button#chatbotVoice {
    background: linear-gradient(135deg, var(--accent-color) 0%, #8b5cf6 100%);
}

.chatbot-input button#chatbotVoice:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.chatbot-input button#chatbotVoice.listening {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    animation: voicePulse 1s ease-in-out infinite;
}

@keyframes voicePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

/* 2025 Analytics Dashboard */
.analytics-dashboard {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.analytics-toggle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Reduced Motion Toggle in Analytics Dashboard */
.analytics-dashboard .reduced-motion-toggle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    outline: none;
}

.analytics-dashboard .reduced-motion-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.analytics-dashboard .reduced-motion-toggle.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.analytics-container {
    position: absolute;
    top: 70px;
    left: 0;
    width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.analytics-container.active {
    display: flex;
}

.analytics-header {
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.analytics-header h4 {
    margin: 0;
    color: white;
    font-size: 16px;
}

.analytics-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.analytics-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.analytics-content {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.analytics-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.analytics-card h5 {
    margin: 0 0 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
}

.analytics-number {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.analytics-chart {
    height: 40px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.analytics-chart::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: chartShimmer 2s ease-in-out infinite;
}

@keyframes chartShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}





/* Responsive Design for Advanced Features */
@media (max-width: 768px) {
    .ai-chatbot {
        bottom: calc(16px + env(safe-area-inset-bottom));
        left: calc(16px + env(safe-area-inset-left));
        right: auto;
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
    
    .chatbot-container {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        border: none;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .chatbot-header {
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .chatbot-messages {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .chatbot-input {
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .chatbot-input input {
        font-size: 16px;
        padding: 15px 20px;
        border-radius: 25px;
    }
    
    .chatbot-input button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .message {
        max-width: 90%;
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .message-content {
        line-height: 1.5;
        font-size: 14px;
    }
    
    .chatbot-suggestions {
        padding: 15px 20px;
        gap: 10px;
    }
    
    .chatbot-suggestion {
        padding: 10px 15px;
        font-size: 13px;
        border-radius: 20px;
    }
    
    .chatbot-suggestions {
        position: fixed;
        bottom: 80px;
        left: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.95);
        border-radius: 15px;
        padding: 15px;
        margin-bottom: 0;
        max-height: 200px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .suggestion-btn {
        padding: 10px 15px;
        font-size: 12px;
        margin: 2px;
    }
    
    .chatbot-close {
        width: 50px;
        height: 50px;
        font-size: 20px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .chatbot-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    /* Mobil chatbot ek optimizasyonları */
    .chatbot-header {
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .chatbot-messages {
        padding-bottom: 20px;
    }
    
    .chatbot-input {
        position: sticky;
        bottom: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .analytics-dashboard {
        left: 10px;
    }
    
    .analytics-container {
        width: 280px;
    }
    
    .analytics-content {
        grid-template-columns: 1fr;
    }
}

/* AI Chatbot Typing Indicator */
.typing-indicator {
    opacity: 0.8;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 8px 0;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes typing-bounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced AI Chatbot Styles */
.ai-chatbot .message.bot-message {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ai-chatbot .message.user-message {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-chatbot .message-content {
    line-height: 1.6;
    word-wrap: break-word;
}

/* AI Chatbot Loading State */
.ai-chatbot.loading .chatbot-send {
    opacity: 0.5;
    pointer-events: none;
}

.ai-chatbot.loading .chatbot-input {
    opacity: 0.7;
}

/* AI Chatbot Error State */
.ai-chatbot .message.error-message {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1), rgba(255, 59, 48, 0.05));
    border: 1px solid rgba(255, 59, 48, 0.2);
    color: #ff3b30;
}

/* AI Chatbot Success State */
.ai-chatbot .message.success-message {
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1), rgba(52, 199, 89, 0.05));
    border: 1px solid rgba(52, 199, 89, 0.2);
    color: #34c759;
}

/* AI Chatbot Status Indicator */
.chatbot-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 1000;
    animation: status-slide-in 0.3s ease-out;
}

.chatbot-status.success {
    background: rgba(52, 199, 89, 0.9);
}

.chatbot-status.error {
    background: rgba(255, 59, 48, 0.9);
}

.chatbot-status.info {
    background: rgba(0, 122, 255, 0.9);
}

.status-content {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-content i {
    font-size: 14px;
}

@keyframes status-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced AI Chatbot Input States */
.ai-chatbot .chatbot-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ai-chatbot .chatbot-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: scale(0.95);
}

/* AI Chatbot Message Animations */
.ai-chatbot .message {
    animation: message-slide-in 0.3s ease-out;
}

@keyframes message-slide-in {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* AI Chatbot Auto Suggestions */
.chatbot-suggestions {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 8px;
    z-index: 1000;
    animation: suggestions-slide-up 0.3s ease-out;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.suggestion-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

.suggestion-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

@keyframes suggestions-slide-up {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* AI Chatbot Voice Button */
.chatbot-voice-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-dark));
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.chatbot-voice-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chatbot-voice-btn.listening {
    background: linear-gradient(135deg, #ff3b30, #ff6b6b);
    animation: voice-pulse 1s infinite;
}

@keyframes voice-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
    }
}

/* Enhanced AI Chatbot Input Container */
.ai-chatbot .chatbot-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.ai-chatbot .chatbot-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 16px;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.ai-chatbot .chatbot-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
}

.ai-chatbot .chatbot-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
