/* Enhanced Footer Styles */

/* Main Footer Styles */
.footer-enhanced {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Ensure footer background doesn't interfere with form elements */
.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/static/images/footer-pattern.png') repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0; /* Keep background behind all content */
}

.footer-main {
    position: relative;
    z-index: 1;
}

/* Footer Brand */
.footer-brand {
    text-align: center;
}

.footer-logo {
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand-text {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Footer Stats */
.footer-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-weight: 700;
    font-size: 1.5rem;
    color: #00d4ff;
    margin-bottom: 0.25rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Titles */
.footer-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    border-radius: 1px;
}

.footer-subtitle {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    border-radius: 4px;
    position: relative;
}

.footer-links a:hover {
    color: #00d4ff;
    transform: translateX(5px);
    padding-left: 0.5rem;
}

/* Removed the ::before pseudo-element that created the line effect */

.footer-links-compact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.footer-links-compact li {
    margin-bottom: 0.5rem;
}

.footer-links-compact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links-compact a:hover {
    color: #00d4ff;
}

/* Live Chat Link */
.live-chat-link {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: #ffffff !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    display: inline-flex !important;
    align-items: center;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

.live-chat-link:hover {
    background: linear-gradient(45deg, #20c997, #17a2b8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Social Links */
.social-title {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link.facebook {
    background: rgba(59, 89, 152, 0.2);
    border: 1px solid rgba(59, 89, 152, 0.3);
}

.social-link.facebook:hover::before {
    background: #3b5998;
}

.social-link.twitter {
    background: rgba(29, 161, 242, 0.2);
    border: 1px solid rgba(29, 161, 242, 0.3);
}

.social-link.twitter:hover::before {
    background: #1da1f2;
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.2);
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.social-link.instagram:hover::before {
    background: linear-gradient(45deg, #e1306c, #fd1d1d, #f77737);
}

.social-link.linkedin {
    background: rgba(0, 119, 181, 0.2);
    border: 1px solid rgba(0, 119, 181, 0.3);
}

.social-link.linkedin:hover::before {
    background: #0077b5;
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.social-link.youtube:hover::before {
    background: #ff0000;
}

.social-link.tiktok {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link.tiktok:hover::before {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.newsletter-input-group {
    border-radius: 25px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-input {
    border: none;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    background: transparent;
}

.newsletter-input:focus {
    box-shadow: none;
    outline: none;
}

.newsletter-btn {
    border: none;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: scale(1.05);
}

.newsletter-consent {
    margin-top: 1rem;
    position: relative;
    z-index: 10;
}

.newsletter-consent label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    margin-left: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.newsletter-consent input[type="checkbox"] {
    position: relative;
    z-index: 11;
    pointer-events: auto !important;
    cursor: pointer !important;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    flex-shrink: 0;
}

.newsletter-consent input[type="checkbox"]:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.newsletter-consent .form-check {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.newsletter-consent .form-check-input {
    position: relative;
    z-index: 12;
    pointer-events: auto !important;
    cursor: pointer !important;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Contact Information */
.contact-title {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-icon {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-right: 1rem;
    margin-top: 0.1rem;
    width: 20px;
    text-align: center;
}

.contact-details {
    flex-grow: 1;
}

.contact-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-value:hover {
    color: #00d4ff;
}

/* App Downloads */
.app-downloads {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.app-download-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-download-link:hover {
    transform: scale(1.05);
}

.app-badge {
    height: 40px;
    width: auto;
    border-radius: 8px;
    filter: brightness(1.1);
}

.qr-code {
    text-align: center;
}

.qr-code-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #ffffff;
    padding: 0.25rem;
}

.qr-code-text {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Trust & Security Section */
.footer-trust-section {
    background: rgba(0, 0, 0, 0.2);
}

.trust-title {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.trust-item:hover {
    color: #00d4ff;
}

.trust-icon {
    color: #28a745;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.trust-text {
    white-space: nowrap;
}

/* Payment Methods */
.payment-title {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.payment-icon:hover {
    color: #ffffff;
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.version-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .legal-links {
        justify-content: flex-end;
    }
}

.legal-links li {
    margin-bottom: 0;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
}

.legal-links a:hover {
    color: #00d4ff;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Live Chat Widget */
.live-chat-toggle {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1040;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
    animation: pulse 2s infinite;
    position: relative;
}

.live-chat-toggle:hover {
    background: linear-gradient(45deg, #20c997, #17a2b8);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
}

.chat-notification-dot {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background: #dc3545;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 1.5s infinite;
    display: none;
}

.chat-notification-dot.show {
    display: block;
}

.live-chat-widget {
    position: fixed;
    bottom: 180px;
    right: 30px;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    display: none;
    overflow: hidden;
    animation: slideInUp 0.3s ease;
}

.live-chat-widget.show {
    display: flex;
    flex-direction: column;
}

.chat-header {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    font-weight: 600;
    font-size: 1rem;
}

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

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.chat-messages {
    flex-grow: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 300px;
}

.chat-message {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    margin-right: 0.75rem;
}

.user-message .message-avatar {
    background: #28a745;
    margin-right: 0;
    margin-left: 0.75rem;
    order: 2;
}

.message-content {
    max-width: 70%;
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    position: relative;
}

.user-message .message-content {
    background: #007bff;
    color: white;
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    color: #6c757d;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.chat-input-section {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.chat-input {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 20px 0 0 20px;
}

.chat-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.chat-send-btn {
    border-radius: 0 20px 20px 0;
    border: none;
    background: #007bff;
    color: white;
    padding: 0.75rem 1rem;
    transition: background 0.3s ease;
}

.chat-send-btn:hover {
    background: #0056b3;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 !important;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .trust-items {
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .legal-links {
        justify-content: center !important;
    }
    
    .live-chat-widget {
        width: 300px;
        height: 400px;
    }
    
    .back-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .live-chat-toggle {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 2rem 0 !important;
    }
    
    .newsletter-section {
        padding: 1.5rem;
    }
    
    .footer-stats {
        padding: 1rem;
    }
    
    .social-icons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .payment-icons {
        gap: 0.75rem;
    }
    
    .payment-icon {
        font-size: 1.5rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .live-chat-widget {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
        height: 350px;
    }
    
    .app-downloads {
        align-items: center;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Loading Animation */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .back-to-top-btn,
    .live-chat-toggle,
    .chat-notification-dot {
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer-enhanced {
        border-top: 2px solid #ffffff;
    }
    
    .footer-links a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .social-link {
        border: 2px solid currentColor;
    }
}

/* Advanced Chat Features CSS */

/* Chat Suggestions */
.chat-suggestions {
    margin: 10px 0;
    padding: 12px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    border-left: 3px solid #4CAF50;
}

.chat-suggestions.follow-up {
    background: rgba(33, 150, 243, 0.1);
    border-left-color: #2196F3;
    margin-top: 15px;
}

.chat-suggestions.retry {
    background: rgba(255, 152, 0, 0.1);
    border-left-color: #FF9800;
}

.suggestions-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.suggestions-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.suggestion-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.suggestion-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #45a049, #3d8b40);
}

.suggestion-btn.small {
    padding: 6px 10px;
    font-size: 0.75rem;
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.suggestion-btn.small:hover {
    background: linear-gradient(135deg, #1976D2, #1565C0);
}

.suggestion-btn.retry {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.suggestion-btn.retry:hover {
    background: linear-gradient(135deg, #F57C00, #EF6C00);
}

/* Enhanced Typing Indicator */
.typing-indicator.enhanced {
    padding: 15px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.typing-indicator.enhanced .message-avatar {
    margin-right: 12px;
}

.typing-indicator.enhanced .message-avatar i {
    color: #4CAF50;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.typing-animation {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 5px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: typingDots 1.4s infinite ease-in-out;
}

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

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

.typing-text {
    color: #888;
    font-style: italic;
    font-size: 0.8rem;
}

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

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

/* Enhanced Message Formatting */
.chat-message .message-content strong {
    color: #2E7D32;
    font-weight: 600;
}

.chat-message .message-content em {
    color: #1976D2;
    font-style: italic;
}

.chat-message .message-content code {
    background: rgba(0, 0, 0, 0.05);
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.chat-message .message-content li {
    list-style: none;
    position: relative;
    margin-left: 15px;
    margin-bottom: 3px;
}

.chat-message .message-content li::before {
    content: "•";
    color: #4CAF50;
    position: absolute;
    left: -15px;
    font-weight: bold;
}

/* Mobile Optimizations for Advanced Features */
@media (max-width: 768px) {
    .suggestions-buttons {
        flex-direction: column;
    }
    
    .suggestion-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .chat-suggestions {
        margin: 8px 0;
        padding: 10px;
    }
    
    .typing-indicator.enhanced {
        padding: 12px;
    }
}