/* Professional Theme-Based Attraction Popup Notification */
.attraction-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100%) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    visibility: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.attraction-popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    animation: floatUp 0.6s cubic-bezier(0.4, 0, 0.2, 1), gentleFloat 3s ease-in-out 0.6s infinite;
}

.attraction-popup.hide {
    opacity: 0;
    transform: translateY(100%) scale(0.9);
    visibility: hidden;
}

.popup-content {
    padding: 18px 20px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.popup-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: popupPulse 2.5s infinite;
}

@keyframes popupPulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1);
    }
}

.popup-text {
    flex: 1;
    min-width: 0;
}

.popup-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.popup-subtitle {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(34, 197, 94, 0.2) 100%);
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(74, 222, 128, 0.3);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.popup-verified {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-verified i {
    color: #4ade80;
    font-size: 14px;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .attraction-popup {
        width: 300px;
        bottom: 15px;
        left: 15px;
    }
    
    .popup-content {
        padding: 16px;
        gap: 14px;
    }
    
    .popup-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .popup-title {
        font-size: 14px;
    }
    
    .popup-subtitle {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .popup-verified {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .attraction-popup {
        width: 280px;
        bottom: 10px;
        left: 10px;
    }
    
    .popup-content {
        padding: 14px;
        gap: 12px;
    }
    
    .popup-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
